summaryrefslogtreecommitdiff
path: root/sci-libs/arprec/files/arprec-2.2.18-fix-c++14.patch
diff options
context:
space:
mode:
Diffstat (limited to 'sci-libs/arprec/files/arprec-2.2.18-fix-c++14.patch')
-rw-r--r--sci-libs/arprec/files/arprec-2.2.18-fix-c++14.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/sci-libs/arprec/files/arprec-2.2.18-fix-c++14.patch b/sci-libs/arprec/files/arprec-2.2.18-fix-c++14.patch
deleted file mode 100644
index 680e921d6807..000000000000
--- a/sci-libs/arprec/files/arprec-2.2.18-fix-c++14.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Fix compiling with C++14, due to changed operator T* -> operator bool semantics.
-See also: https://bugs.gentoo.org/show_bug.cgi?id=593872
-
---- a/src/write.cpp
-+++ b/src/write.cpp
-@@ -196,6 +196,6 @@
-
- string str = to_string(precision, width, expn_width,
- fmt, showpos, uppercase, fill);
-- return (s << str) != 0;
-+ return static_cast<bool>(s << str);
- }
-