21 #ifndef ALEXANDRIA_KERNEL_SERIALIZATION_ARRAY_H 22 #define ALEXANDRIA_KERNEL_SERIALIZATION_ARRAY_H 28 #include <boost/version.hpp> 30 #if (BOOST_VERSION / 100000) <= 1 && ((BOOST_VERSION / 100) % 1000) < 56 35 namespace serialization {
37 template <
class Archive, std::
size_t ND,
typename CellType>
38 void serialize(Archive& archive, std::array<CellType, ND>& array,
const unsigned int) {
39 for (
int i = 0; i < ND; ++i) {
49 #include <boost/serialization/array.hpp>
void serialize(Archive &archive, std::array< CellType, ND > &array, const unsigned int)