id,summary,reporter,owner,description,type,status,milestone,component,version,severity,resolution,keywords,cc 11085,Missing qualifier for pow call in phoenix/test/function/function_tests.cpp,Aparna Kumta ,Thomas Heller,"Compiling phoenix/test/function/function_tests.cpp with Oracle Solaris Studio 12.4 on Solaris 11.2 we see the following error: ""../libs/phoenix/test/function/function_tests.cpp"", line 128: Error: The function ""pow"" must have a prototype. The following change seems to resolve the issue. diff ./function_tests.cpp ./function_tests.cpp_orig 88c88 < return std::pow(a, b); --- > return pow(a, b); 128c128 < BOOST_TEST((int)power(arg1, arg2)(d5, d3) == (int)std::pow(d5, d3)); --- > BOOST_TEST((int)power(arg1, arg2)(d5, d3) == (int)pow(d5, d3)); %",Bugs,closed,To Be Determined,phoenix,Boost Development Trunk,Problem,fixed,,