diff --git a/test/static_string.cpp b/test/static_string.cpp index 60320e7..aeab141 100644 --- a/test/static_string.cpp +++ b/test/static_string.cpp @@ -3727,16 +3727,19 @@ testToStaticString() auto str = to_static_wstring(std::numeric_limits::max()); BOOST_TEST(str.find('e') != static_string<0>::npos || str.find('.') != static_string<0>::npos || str == L"infinity" || str == L"inf"); + std::wcout << str; } { auto str = to_static_wstring(std::numeric_limits::max()); BOOST_TEST(str.find('e') != static_string<0>::npos || str.find('.') != static_string<0>::npos || str == L"infinity" || str == L"inf"); + std::wcout << str; } { auto str = to_static_wstring(std::numeric_limits::max()); BOOST_TEST(str.find('e') != static_string<0>::npos || str.find('.') != static_string<0>::npos || str == L"infinity" || str == L"inf"); + std::wcout << str; } }