503b248127
Modify our patches as necessary to match the updated boost sources. Drop patches for which corresponding (or even identical) changes already are present. Add a new boostsystem static library and use it in two places. Change-Id: Ib59558feb56dab87a69c91b38caca8e7a9e9a22e
19 lines
656 B
Diff
19 lines
656 B
Diff
--- 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;
|
|
}
|