id summary reporter owner description type status milestone component version severity resolution keywords cc 11081 Missing qualifier for exit call in boost/numeric/odeint/stepper/implicit_euler.hpp Aparna Kumta karsten "Compiling libs/numeric/odeint/test/implicit_euler.cpp with Oracle Solaris Studio 12.4 on Solaris 11.2, I see the following error: ""../boost/numeric/odeint/stepper/implicit_euler.hpp"", line 147: Error: The function ""exit"" must have a prototype. The call to exit needs to be qualified with std:: The following change resolves the issue. % diff ./implicit_euler.hpp implicit_euler.hpp_orig 147c147 < if( res != 0 ) std::exit(0); --- > if( res != 0 ) exit(0); calypso-sparc30% " Bugs closed To Be Determined odeint Boost Development Trunk Problem fixed