id,summary,reporter,owner,description,type,status,milestone,component,version,severity,resolution,keywords,cc 10840,Missing std:: qualifier for puts call in test_7868.cpp,Aparna Kumta ,viboes,"File libs/chrono/test/test_7868.cpp fails when compiled with Oracle Solaris Studio 12.4 on Solaris 11.2 as follows: ""../libs/chrono/test/test_7868.cpp"", line 32: Error: The function ""puts"" must have a prototype. ""../libs/chrono/test/test_7868.cpp"", line 32: Error: The function ""puts"" must have a prototype. The file test_7868.cpp includes , however the call to puts needs to be qualified with std::. The diff's for the file are 32c32 < puts(ctime(&t)); --- > std::puts(ctime(&t)); Per the C++ standard, including a header like in this case, the names in these headers are only in the namespace std. Hence they need to be qualified with std::. ",Bugs,closed,Boost 1.58.0,chrono,Boost Development Trunk,Problem,fixed,,