1
0
Fork 0
forked from lthn/blockchain

eos portable archive: fix boost archive version back to make it independent from Boost version (also, fix for ZANO-307)

This commit is contained in:
sowle 2019-06-12 18:45:20 +03:00
parent 2fe5e6be13
commit 953a081559

View file

@ -35,11 +35,14 @@ namespace eos {
// version of the linked boost archive library
const archive_version_type archive_version(
#if BOOST_VERSION < 103700
boost::archive::ARCHIVE_VERSION()
#else
boost::archive::BOOST_ARCHIVE_VERSION()
#endif
100 // explicitly fix archive version to make it independent from Boost version
//#if BOOST_VERSION < 103700
// boost::archive::ARCHIVE_VERSION()
//#else
// boost::archive::BOOST_ARCHIVE_VERSION()
//#endif
);
/**