Comment 2 for bug 1941909

Revision history for this message
Jerry Quinn (jlquinn) wrote : Re: bug in boost 1.74

More details in upstream bug report https://github.com/boostorg/serialization/issues/219

In case others see this report, you can work around the issue as described in
https://github.com/jngrad/espresso/commit/f33faf09ab26131bd38c2b8bd33efd35679134a3

Insert the following code before other uses of serialization:

// Workaround for bug in boost 1.74
// https://github.com/boostorg/serialization/issues/219
// Shows up on ubuntu 22.04
#include <boost/serialization/version.hpp>
#if BOOST_VERSION / 100000 == 1 && BOOST_VERSION / 100 % 1000 == 74
#include <boost/serialization/library_version_type.hpp>
#endif