forked from pool/boost
- 1d862615.patch: Fix regression caused by refactoring of serialization code (bnc#1038083) OBS-URL: https://build.opensuse.org/request/show/493682 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/boost?expand=0&rev=197
20 lines
586 B
Diff
20 lines
586 B
Diff
commit 1d86261581230e2dc5d617a9b16287d326f3e229
|
|
Author: Robert Ramey <ramey@rrsd.com>
|
|
Date: Wed Feb 1 16:43:59 2017 -0800
|
|
|
|
correct error which appeared when compiling non c++ compliant code for arrays
|
|
|
|
diff --git a/include/boost/serialization/array.hpp b/include/boost/serialization/array.hpp
|
|
index 61708b3..612d1a6 100644
|
|
--- a/include/boost/serialization/array.hpp
|
|
+++ b/include/boost/serialization/array.hpp
|
|
@@ -23,6 +23,8 @@ namespace std{
|
|
} // namespace std
|
|
#endif
|
|
|
|
+#include <boost/serialization/array_wrapper.hpp>
|
|
+
|
|
#ifndef BOOST_NO_CXX11_HDR_ARRAY
|
|
|
|
#include <array>
|