id,summary,reporter,owner,description,type,status,milestone,component,version,severity,resolution,keywords,cc 9140,Building boost::log's snprintf.hpp in Sun Studio 12.3: some functions aren't defined that are expected,Brian Vandenberg ,Andrey Semashev,"I get the following error building with Sun Studio 12.3: {{{ ""./boost/log/detail/snprintf.hpp"", line 40: snprintf is not defined. ""./boost/log/detail/snprintf.hpp"", line 41: vsnprintf is not defined. ""./boost/log/detail/snprintf.hpp"", line 44: swprintf is not defined. ""./boost/log/detail/snprintf.hpp"", line 45: vswprintf is not defined. }}} Changes needed are something along the lines of: {{{ #if defined( __SUNPRO_CC ) #include #else #include #endif }}} ... and {{{ #if defined( __SUNPRO_CC ) using std::swprintf; using std::vswprintf; #else using ::swprintf; using ::vswprintf; #endif }}} ",Bugs,closed,To Be Determined,log,Boost 1.54.0,Problem,fixed,,phantall+boost@…