Hello,
the last 2 commits (854eb3a and eb75b64) broke the compilation for Boost 1.55. They do work on latest versions..
I had to put the following in stat_map.hpp:
namespace boost {
namespace serialization {
template<class Archive, class T, size_t N>
void serialize(Archive & ar, std::array<T,N> & a, const unsigned int version)
{
ar & boost::serialization::make_array(a.data(), a.size());
}
} // namespace serialization
} // namespace boost
We should somehow make it generic (I am assuming that this will not compile in newer versions, as the serialize is defined for std::array).. I will check and get back..
Hello,
the last 2 commits (854eb3a and eb75b64) broke the compilation for Boost 1.55. They do work on latest versions..
I had to put the following in
stat_map.hpp:We should somehow make it generic (I am assuming that this will not compile in newer versions, as the serialize is defined for std::array).. I will check and get back..