boost
boost copied to clipboard
Changed const reference to non-const reference to fix Boost.Serializa…
// Added BOOST_CLASS_EXPORT macro to register polymorphic class with Boost.Serialization class BOOST_SYMBOL_VISIBLE MyPolymorphicClass : public MyBaseClass { // Class definition here }; BOOST_CLASS_EXPORT(MyPolymorphicClass)
There are a couple of problems with this PR:
- It's targeted at
master
. We never commit directly tomaster
; instead we commit todevelop
and then merge tomaster
after the tests have passed. - this looks like it should be committed to Boost.Serialization, not the main boost project. https://github.com/boostorg/serialization