freebsd-ports/devel/boost/files/FBSD4-patch-boost_test_impl_test_tools.ipp
Simon Barner 443684d89b - 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]
2005-11-09 14:30:56 +00:00

20 lines
820 B
C++

--- 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 );