Index: boost/chrono/io/utility/to_string.hpp =================================================================== --- boost/chrono/io/utility/to_string.hpp (revision 75864) +++ boost/chrono/io/utility/to_string.hpp (working copy) @@ -27,10 +27,12 @@ std::string to_string(T const&v) { return to_basic_string(v); } +#ifndef BOOST_NO_STD_WSTRING template std::wstring to_wstring(T const&v) { return to_basic_string(v); } +#endif #if BOOST_CHRONO_HAS_UNICODE_SUPPORT template std::basic_string to_u16string(T const&v) {