[Boost-bugs] [Boost C++ Libraries] #13097: cannot serialize boost::array anymore

Subject: [Boost-bugs] [Boost C++ Libraries] #13097: cannot serialize boost::array anymore
From: Boost C++ Libraries (noreply_at_[hidden])
Date: 2017-06-26 15:28:49


#13097: cannot serialize boost::array anymore
------------------------------+---------------------
 Reporter: dario.izzo@… | Owner:
     Type: Support Requests | Status: new
Milestone: To Be Determined | Component: None
  Version: Boost 1.64.0 | Severity: Problem
 Keywords: |
------------------------------+---------------------
 Serialization of boost::array fails in 1.64 (it did not in 1.63)

 The code

 namespace boost { namespace serialization {
 // implement serialization for boost::array
 template <class Archive, class T, std::size_t N>
 void serialize(Archive& ar, boost::array<T,N>& a, const unsigned int /*
 version */)
 {
     ar & boost::serialization::make_nvp("elems", a.elems);
 }

 } } // end namespace boost::serialization

 has been removed from the serialization/array.hpp header hence breaking my
 code. Is this intended?

--
Ticket URL: <https://svn.boost.org/trac10/boost/ticket/13097>
Boost C++ Libraries <http://www.boost.org/>
Boost provides free peer-reviewed portable C++ source libraries.

This archive was generated by hypermail 2.1.7 : 2017-06-26 15:35:56 UTC