Index: floating_point_comparison.hpp =================================================================== RCS file: /cvsroot/boost/boost/boost/test/floating_point_comparison.hpp,v retrieving revision 1.25 diff -u -r1.25 floating_point_comparison.hpp --- floating_point_comparison.hpp 13 Mar 2006 18:28:25 -0000 1.25 +++ floating_point_comparison.hpp 16 Mar 2006 07:29:47 -0000 @@ -62,12 +62,12 @@ safe_fpt_division( FPT f1, FPT f2 ) { // Avoid overflow. - if( f2 < static_cast(1) && f1 > f2 * std::numeric_limits::max() ) + if( f2 < static_cast(1) && f1 > f2 * (std::numeric_limits::max)() ) return std::numeric_limits::max(); // Avoid underflow. if( f1 == static_cast(0) || - f2 > static_cast(1) && f1 < f2 * std::numeric_limits::min() ) + f2 > static_cast(1) && f1 < f2 * (std::numeric_limits::min)() ) return static_cast(0); return f1/f2;