Skip to content
This repository has been archived by the owner on Dec 3, 2018. It is now read-only.

Commit

Permalink
patches for boost@1.62 and boost@1.63
Browse files Browse the repository at this point in the history
  • Loading branch information
wilhelmberg committed Mar 20, 2017
1 parent 70d9469 commit 4cf4952
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
13 changes: 13 additions & 0 deletions patches/boost-1_62.diff
@@ -0,0 +1,13 @@
diff --git a/boost/spirit/home/support/attributes.hpp b/boost/spirit/home/support/attributes.hpp
index 889e3a3..da8f981 100644
--- a/boost/spirit/home/support/attributes.hpp
+++ b/boost/spirit/home/support/attributes.hpp
@@ -1033,7 +1033,7 @@ namespace boost { namespace spirit { namespace traits
void swap_impl(T& a, T& b)
{
using namespace std;
- swap(a, b);
+ std::swap(a, b);
}

template <typename A>
13 changes: 13 additions & 0 deletions patches/boost-1_63.diff
@@ -0,0 +1,13 @@
diff --git a/boost/spirit/home/support/attributes.hpp b/boost/spirit/home/support/attributes.hpp
index 889e3a3..da8f981 100644
--- a/boost/spirit/home/support/attributes.hpp
+++ b/boost/spirit/home/support/attributes.hpp
@@ -1033,7 +1033,7 @@ namespace boost { namespace spirit { namespace traits
void swap_impl(T& a, T& b)
{
using namespace std;
- swap(a, b);
+ std::swap(a, b);
}

template <typename A>

0 comments on commit 4cf4952

Please sign in to comment.