aboutsummaryrefslogtreecommitdiffstats
path: root/main/boost
diff options
context:
space:
mode:
authorAmatCoder <AmatCoder@users.noreply.github.com>2016-05-20 12:31:58 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2016-05-20 13:26:11 +0000
commit82cb12b466cc79ae9d32bc3703ae60126a7bea0a (patch)
treed2a292120c6509481517b3575b366e783aba6e4b /main/boost
parent32988dd958ff290a8e8ad2c05a6c8e82645d04de (diff)
downloadaports-82cb12b466cc79ae9d32bc3703ae60126a7bea0a.tar.bz2
aports-82cb12b466cc79ae9d32bc3703ae60126a7bea0a.tar.xz
main/boost: Delete old patch
Diffstat (limited to 'main/boost')
-rw-r--r--main/boost/0001-fix-condition-for-make_setter-overload.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/main/boost/0001-fix-condition-for-make_setter-overload.patch b/main/boost/0001-fix-condition-for-make_setter-overload.patch
deleted file mode 100644
index aa6fa07684..0000000000
--- a/main/boost/0001-fix-condition-for-make_setter-overload.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From f410fbd64d887e2a8824f968b0533588489b5430 Mon Sep 17 00:00:00 2001
-From: Jonathan Wakely <jwakely@redhat.com>
-Date: Wed, 2 Sep 2015 13:02:12 +0100
-Subject: [PATCH] Python: Fix condition for make_setter overload.
-
-This fixes the regression caused by 42e7d7b.
-
-Fixes #39
----
- include/boost/python/data_members.hpp | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/boost/python/data_members.hpp b/boost/python/data_members.hpp
-index 139bde3..5d3309c 100644
---- a/boost/python/data_members.hpp
-+++ b/boost/python/data_members.hpp
-@@ -305,7 +305,7 @@ inline object make_setter(D& x)
- return detail::make_setter(x, default_call_policies(), is_member_pointer<D>(), 0);
- }
-
--# if BOOST_WORKAROUND(__EDG_VERSION__, <= 238)
-+# if !BOOST_WORKAROUND(__EDG_VERSION__, <= 238)
- template <class D>
- inline object make_setter(D const& x)
- {