Ticket #6241: to_string.hpp.patch

File to_string.hpp.patch, 622 bytes (added by Kervala <kervala@…>, 11 years ago)
  • boost/chrono/io/utility/to_string.hpp

     
    2727    std::string to_string(T const&v) {
    2828      return to_basic_string<char>(v);
    2929    }
     30#ifndef BOOST_NO_STD_WSTRING
    3031    template <typename T>
    3132    std::wstring to_wstring(T const&v) {
    3233      return to_basic_string<wchar_t>(v);
    3334    }
     35#endif
    3436#if BOOST_CHRONO_HAS_UNICODE_SUPPORT
    3537    template <typename T>
    3638    std::basic_string<char16_t> to_u16string(T const&v) {