
Jared McIntyre <jmcintyre <at> dfsoftware.com> writes:
Robert Ramey <ramey <at> rrsd.com> writes:
a) grep the code for everywhere that the serialization library version is used. There are only a couple of places - mostly in the stl class serialization I think.
I'll probably give this a shot. Asside from the version number, there are a couple additional tags that mark that it is using version 0 of a class. Before it didn't post anything for version 0. I'll check to see if that even needs modifying or if the 1.33 code can digest version 0 tags for objects. Either way, since there were no major changes to the desrialization format of the objects I'm using, I can probably get this to work.
I changed ARCHIVE_VERSION in basic_archive.cpp to 3 (from 4) and this worked for me. Luckily, I'm not using any collections whose serialization format has changed. Jared