8 Nov
2007
8 Nov
'07
3:07 p.m.
Oliver Kania wrote:
Hello out there ! I have an urgent problem concerning boost::serialize. I have split the serialize operation into save / load as described in the tutorial: =================================================== template<class Archive> void save( Archive &ar, unsigned int version) {
...
error C2662: 'void jedox::palo::AbstractCache
::save<Archive>(Archive &,unsigned int)' : cannot convert 'this' pointer from 'const jedox::palo::AbstractCache ' to 'jedox::palo::AbstractCache &'
'const' in the error message is saying that save should be a const member function with the signature: template<class Archive> void save( Archive &ar, unsigned int version) const { Jeff Flinn