summaryrefslogtreecommitdiff
path: root/boost/boost.3093.warnings.patch
diff options
context:
space:
mode:
Diffstat (limited to 'boost/boost.3093.warnings.patch')
-rwxr-xr-xboost/boost.3093.warnings.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/boost/boost.3093.warnings.patch b/boost/boost.3093.warnings.patch
deleted file mode 100755
index 1b2bf6da423d..000000000000
--- a/boost/boost.3093.warnings.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- misc/boost_1_44_0/boost/logic/tribool.hpp Sun Nov 25 18:07:19 2007
-+++ misc/build/boost_1_44_0/boost/logic/tribool.hpp Fri May 17 12:03:35 2013
-@@ -93,7 +93,7 @@
- *
- * \throws nothrow
- */
-- tribool(bool value) : value(value? true_value : false_value) {}
-+ tribool(bool initial_value) : value(initial_value? true_value : false_value) {}
-
- /**
- * Construct a new 3-state boolean value with an indeterminate value.