From cd70147c7d5a9c5872fbf854b2067243d8579a92 Mon Sep 17 00:00:00 2001 From: Krystian Stasiowski Date: Sat, 22 Feb 2020 21:04:14 -0500 Subject: [PATCH] Add back debug for mingw msvc --- test/static_string.cpp | 3 +++ 1 file changed, 3 insertions(+) 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; } }