summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/boost/boost/0001-correct-error-which-appeared-when-compiling-non-c-co.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-support/boost/boost/0001-correct-error-which-appeared-when-compiling-non-c-co.patch')
-rw-r--r--meta/recipes-support/boost/boost/0001-correct-error-which-appeared-when-compiling-non-c-co.patch28
1 files changed, 28 insertions, 0 deletions
diff --git a/meta/recipes-support/boost/boost/0001-correct-error-which-appeared-when-compiling-non-c-co.patch b/meta/recipes-support/boost/boost/0001-correct-error-which-appeared-when-compiling-non-c-co.patch
new file mode 100644
index 0000000000..2598d2b175
--- /dev/null
+++ b/meta/recipes-support/boost/boost/0001-correct-error-which-appeared-when-compiling-non-c-co.patch
@@ -0,0 +1,28 @@
1From 02fa5cee1b8d0321787113e2dc10b162c657f333 Mon Sep 17 00:00:00 2001
2From: Robert Ramey <ramey@rrsd.com>
3Date: Wed, 1 Feb 2017 16:43:59 -0800
4Subject: [PATCH] correct error which appeared when compiling non c++ compliant
5 code for arrays
6
7Upstream-Status: Backported [expected to be released in v1.65]
8
9---
10 boost/serialization/array.hpp | 2 ++
11 1 file changed, 2 insertions(+)
12
13diff --git a/boost/serialization/array.hpp b/boost/serialization/array.hpp
14index 61708b3..612d1a6 100644
15--- a/boost/serialization/array.hpp
16+++ b/boost/serialization/array.hpp
17@@ -23,6 +23,8 @@ namespace std{
18 } // namespace std
19 #endif
20
21+#include <boost/serialization/array_wrapper.hpp>
22+
23 #ifndef BOOST_NO_CXX11_HDR_ARRAY
24
25 #include <array>
26--
272.9.3
28