summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/boost/files
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@cn.fujitsu.com>2020-05-23 02:23:08 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-05-24 23:56:03 +0100
commita28c4978ebfd4b2928ee8beeeabdc9fa631cb619 (patch)
tree7bc5f8befd3746b66a4a5284b760fb2dcfd458ae /meta/recipes-support/boost/files
parent945cf5f02a6bba194c658e66ad5699569415db99 (diff)
downloadpoky-a28c4978ebfd4b2928ee8beeeabdc9fa631cb619.tar.gz
boost: upgrade 1.72.0 -> 1.73.0
refresh 0001-Don-t-set-up-arch-instruction-set-flags-we-do-that-o.patch remove 0001-revert-cease-dependence-on-range.patch since it is included in 1.73.0 (From OE-Core rev: 1728ecf71f96570913202a54fd0012ac8b01b8ae) Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/boost/files')
-rw-r--r--meta/recipes-support/boost/files/0001-revert-cease-dependence-on-range.patch53
1 files changed, 0 insertions, 53 deletions
diff --git a/meta/recipes-support/boost/files/0001-revert-cease-dependence-on-range.patch b/meta/recipes-support/boost/files/0001-revert-cease-dependence-on-range.patch
deleted file mode 100644
index d6d09a23a5..0000000000
--- a/meta/recipes-support/boost/files/0001-revert-cease-dependence-on-range.patch
+++ /dev/null
@@ -1,53 +0,0 @@
1From 436e1dbe6fcd31523d261d18ad011392f1d6fbbc Mon Sep 17 00:00:00 2001
2From: Oliver Kowalke <oliver.kowalke@gmail.com>
3Date: Sun, 1 Dec 2019 20:40:28 +0100
4Subject: [PATCH] Revert "Cease dependence on Range"
5
6This reverts commit 0c556bb59241e682bbcd3f572815149c5a9b17db.
7
8see #44 (One test fails to compile after boostorg/coroutine submodule updated)
9
10Upstream-Status: Backport [https://github.com/boostorg/coroutine/commit/9c73b2f7c1759a9508ba8780b38dc15f07f1a447]
11
12Signed-off-by: Andrew Geissler <geissonator@gmail.com>
13---
14 boost/coroutine/asymmetric_coroutine.hpp | 12 +++---------
15 1 file changed, 3 insertions(+), 9 deletions(-)
16
17diff --git a/boost/coroutine/asymmetric_coroutine.hpp b/boost/coroutine/asymmetric_coroutine.hpp
18index ea96981..640896f 100644
19--- a/boost/coroutine/asymmetric_coroutine.hpp
20+++ b/boost/coroutine/asymmetric_coroutine.hpp
21@@ -14,6 +14,7 @@
22 #include <boost/assert.hpp>
23 #include <boost/config.hpp>
24 #include <boost/move/move.hpp>
25+#include <boost/range.hpp>
26 #include <boost/throw_exception.hpp>
27 #include <boost/utility/explicit_operator_bool.hpp>
28
29@@ -2354,19 +2355,12 @@ end( push_coroutine< R > & c)
30
31 }
32
33-// forward declaration of Boost.Range traits to break dependency on it
34-template<typename C, typename Enabler>
35-struct range_mutable_iterator;
36-
37-template<typename C, typename Enabler>
38-struct range_const_iterator;
39-
40 template< typename Arg >
41-struct range_mutable_iterator< coroutines::push_coroutine< Arg >, void >
42+struct range_mutable_iterator< coroutines::push_coroutine< Arg > >
43 { typedef typename coroutines::push_coroutine< Arg >::iterator type; };
44
45 template< typename R >
46-struct range_mutable_iterator< coroutines::pull_coroutine< R >, void >
47+struct range_mutable_iterator< coroutines::pull_coroutine< R > >
48 { typedef typename coroutines::pull_coroutine< R >::iterator type; };
49
50 }
51--
522.24.1
53