So I am about to try a simple Eureqa API example in Xcode as shown on: https://code.google.com/p/eureqa-api/
However as I tried to compile it there seems to be an error in the access.hpp of the boost headers in this line: ...
{
// note: if you get a compile time error here with a
// message something like:
// cannot convert parameter 1 from <file type 1> to <file type 2 &>
// a likely possible cause is that the class T contains a
// serialize function - but that serialize function isn't
// a template and corresponds to a file type different than
// the class Archive. To resolve this, don't include an
// archive type other than that for which the serialization
// function is defined!!!
t.serialize(ar, file_version);
}
... With a message: No member named 'serialize' in 'std::_1::pair'
What should I do in order to fix this?