id summary reporter owner description type status milestone component version severity resolution keywords cc 10927 Missing std:: qualifier for fabs in phoenix/test/stdlib/cmath.cpp Aparna Kumta Thomas Heller "Compiling cmath.cpp with Oracle Solaris Studio12.4 on on Solaris 11.2 with -library=stlport4, we see ""../libs/phoenix/test/stdlib/cmath.cpp"", line 28: Error: The function ""fabs"" must have a prototype. ""../libs/phoenix/test/stdlib/cmath.cpp"", line 29: Error: The function ""fabs"" must have a prototype. The call to fabs is unqualified. The following modification to the file resolves the errors seen above. $diff ./cmath.cpp ./cmath.cpp_orig 28,29c28,29 < BOOST_TEST(std::fabs(x-4.) < eps ); < BOOST_TEST(std::fabs(z-1.) < eps ); --- > BOOST_TEST(fabs(x-4.) < eps ); > BOOST_TEST(fabs(z-1.) < eps ); " Bugs closed To Be Determined phoenix Boost 1.58.0 Problem fixed