aboutsummaryrefslogtreecommitdiff
path: root/ports/boost-python/unwind-type.patch
diff options
context:
space:
mode:
authorRobert Schumacher <roschuma@microsoft.com>2019-09-27 10:41:02 -0700
committerCurtis J Bezault <curtbezault@gmail.com>2019-09-27 10:41:02 -0700
commit9433136b22b5e443d550ca7665a562637c8a86b9 (patch)
treebf29de1962d1810f52e1d8537734ad3def9ea52d /ports/boost-python/unwind-type.patch
parent50b49af28a7ab619b341f3ba20d47592d302baab (diff)
downloadvcpkg-9433136b22b5e443d550ca7665a562637c8a86b9.tar.gz
vcpkg-9433136b22b5e443d550ca7665a562637c8a86b9.zip
[boost] Update to 1.71.0 (#7959)
* [boost] Update to 1.71.0 * [openmvs] Fixes for boost 1.71 * [telnetpp] DISABLE_PARALLEL_CONFIGURE * [execute_process] Fix output variables (like error_code) not getting populated * [telnetpp] Add missing boost-exception dependency * [boost] Refactor generate-ports.ps1 into scripts dir. Enable boost-thread on uwp. * [boost-iostreams] Revert removal of zstd dependency * [openmvs] Fix tools deployment
Diffstat (limited to 'ports/boost-python/unwind-type.patch')
-rw-r--r--ports/boost-python/unwind-type.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/ports/boost-python/unwind-type.patch b/ports/boost-python/unwind-type.patch
deleted file mode 100644
index 62e9c8185..000000000
--- a/ports/boost-python/unwind-type.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-diff --git a/include/boost/python/detail/unwind_type.hpp b/include/boost/python/detail/unwind_type.hpp
-index f6cdab6..da9633b 100644
---- a/include/boost/python/detail/unwind_type.hpp
-+++ b/include/boost/python/detail/unwind_type.hpp
-@@ -11,7 +11,7 @@
-
- namespace boost { namespace python { namespace detail {
-
--#ifndef _MSC_VER //if forward declared, msvc6.5 does not recognize them as inline
-+#if !defined(_MSC_VER) || _MSC_VER >= 1915 //if forward declared, msvc6.5 does not recognize them as inline
- // forward declaration, required (at least) by Tru64 cxx V6.5-042
- template <class Generator, class U>
- inline typename Generator::result_type
-@@ -83,7 +83,7 @@ struct unwind_helper<false>
-
- template <class Generator, class U>
- inline typename Generator::result_type
--#ifndef _MSC_VER
-+#if !defined(_MSC_VER) || _MSC_VER >= 1915
- unwind_type(U const& p, Generator*)
- #else
- unwind_type(U const& p, Generator* = 0)
-@@ -148,7 +148,7 @@ struct unwind_helper2<reference_to_pointer_>
- // why bother?
- template <class Generator, class U>
- inline typename Generator::result_type
--#ifndef _MSC_VER
-+#if !defined(_MSC_VER) || _MSC_VER >= 1915
- unwind_type(boost::type<U>*, Generator*)
- #else
- unwind_type(boost::type<U>*p =0, Generator* =0)