diff options
author | Simon Barner <barner@FreeBSD.org> | 2005-11-09 14:30:56 +0000 |
---|---|---|
committer | Simon Barner <barner@FreeBSD.org> | 2005-11-09 14:30:56 +0000 |
commit | 443684d89bd9c664ef6e288ef9371627ed1d316a (patch) | |
tree | c4c8da60393c6e361c408ff1d2db218d2f11a6f1 /devel/boost/files/FBSD4-patch-boost_test_impl_test_tools.ipp | |
parent | Searches for book information from the (US) Amazon online catalog. (diff) |
- Update to Boost 1.33.0
* Boost.Regex now supports the ICU unicode library
* Optionally build Boost with GCC 3.4 on FreeBSD 4.x [1]
* For changes to the Boost libraries see their specific ChangeLogs
in ${LOCALBASE}/share/doc/boost or at http://www.boost.org/
* Bump shared library version to 3
PR: ports/88014 [1]
Submitted by: Václav Haisman [1]
Diffstat (limited to 'devel/boost/files/FBSD4-patch-boost_test_impl_test_tools.ipp')
-rw-r--r-- | devel/boost/files/FBSD4-patch-boost_test_impl_test_tools.ipp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/devel/boost/files/FBSD4-patch-boost_test_impl_test_tools.ipp b/devel/boost/files/FBSD4-patch-boost_test_impl_test_tools.ipp new file mode 100644 index 000000000000..e6b99a03ec74 --- /dev/null +++ b/devel/boost/files/FBSD4-patch-boost_test_impl_test_tools.ipp @@ -0,0 +1,20 @@ +--- boost/test/impl/test_tools.ipp.orig Sun Aug 21 14:08:00 2005 ++++ boost/test/impl/test_tools.ipp Sun Aug 21 14:09:41 2005 +@@ -173,7 +173,7 @@ + unit_test_log << "difference between " << arg1_descr << "{" << arg1_val << "}" + << " and " << arg2_descr << "{" << arg2_val << "}" + << ( tl == PASS ? " doesn't exceed " : " exceeds " ) +- << toler_val << "%", ++ << toler_val << "%"; + + va_end( args ); + +@@ -196,7 +196,7 @@ + + unit_test_log << "absolute value of " << arg1_descr << "{" << arg1_val << "}" + << ( tl == PASS ? " doesn't exceed " : " exceeds " ) +- << toler_val, ++ << toler_val; + + va_end( args ); + |