summaryrefslogtreecommitdiff
path: root/boost/boost.loplugin.patch
diff options
context:
space:
mode:
Diffstat (limited to 'boost/boost.loplugin.patch')
-rw-r--r--boost/boost.loplugin.patch19
1 files changed, 19 insertions, 0 deletions
diff --git a/boost/boost.loplugin.patch b/boost/boost.loplugin.patch
new file mode 100644
index 000000000000..7c35d33034bd
--- /dev/null
+++ b/boost/boost.loplugin.patch
@@ -0,0 +1,19 @@
+--- foo/foo/foo/boost/lexical_cast.hpp
++++ foo/foo/foo/boost/lexical_cast.hpp
+@@ -1016,7 +1016,7 @@
+ if( !has_minus ) value = std::numeric_limits<T>::quiet_NaN();
+ else value = (boost::math::changesign) (std::numeric_limits<T>::quiet_NaN());
+ return true;
+- } else
++ } else {
+ if (( /* 'INF' or 'inf' */
+ end-begin==3
+ &&
+@@ -1031,6 +1031,7 @@
+ else value = (boost::math::changesign) (std::numeric_limits<T>::infinity());
+ return true;
+ }
++ }
+
+ return false;
+ }