23 Jul
2008
23 Jul
'08
1:17 p.m.
Hi Dan,
just a quick note to say that for me (OpenSUSE 11 64 bit, g++ 4.3.1) the
following has helped:
#if BOOST_VERSION <= 103500
BOOST_IS_ABSTRACT(MyNamespace::MyClass)
#else
BOOST_SERIALIZATION_ASSUME_ABSTRACT(MyNamespace::MyClass)
#endif /* Serialization traits */
You need to include
Try using boost/serialization/assume_abstract.hpp
Thanks for the quick reply. I tried this change but it made no difference. I still get the same errors. I have dealt with my immediate problems by rolling back to boost 1.33.0 so I will stop pestering you about this :-)
Thanks for your help
Dan