summaryrefslogtreecommitdiff
path: root/app-pda/barry/files/barry-0.18.4-shared_ptr.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
commitd87262dd706fec50cd150aab3e93883b6337466d (patch)
tree246b44c33ad7a57550430b0a60fa0df86a3c9e68 /app-pda/barry/files/barry-0.18.4-shared_ptr.patch
parent71bc00c87bba1ce31de0dac6c3b7fd1aee6917fc (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'app-pda/barry/files/barry-0.18.4-shared_ptr.patch')
-rw-r--r--app-pda/barry/files/barry-0.18.4-shared_ptr.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/app-pda/barry/files/barry-0.18.4-shared_ptr.patch b/app-pda/barry/files/barry-0.18.4-shared_ptr.patch
deleted file mode 100644
index dbccfe66ea21..000000000000
--- a/app-pda/barry/files/barry-0.18.4-shared_ptr.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-With -std=c++-11 shared_ptr is available in the standard library so pulling in
-the std::tr1 namespace creates an ambiguous reference. Simple fix is to stop
-doing that but isn't backwards compatible. We don't care in Gentoo since we'll
-always be building barry with -std=c++11 due to libsigc++ abi compatibility.
-
---- a/tools/bio.cc
-+++ b/tools/bio.cc
-@@ -42,7 +42,6 @@
- #include "i18n.h"
-
- using namespace std;
--using namespace std::tr1;
- using namespace Barry;
-
- // keeping a record of all the -i device / -o device pin numbers, so
---- a/tools/btool.cc
-+++ b/tools/btool.cc
-@@ -59,7 +59,6 @@
- #include "barrygetopt.h"
-
- using namespace std;
--using namespace std::tr1;
- using namespace Barry;
-
- std::map<std::string, std::string> SortKeys;