Re: [Boost-users] [serialization] Problems with BOOST_IS_ABSTRACT, gcc 3.2.3 and Boost 1.35.0
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
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
participants (2)
-
Dan Thomas
-
Ruediger Berlich