Add back debug for mingw msvc

This commit is contained in:
Krystian Stasiowski
2020-02-22 21:04:14 -05:00
parent b668307bb6
commit cd70147c7d

View File

@ -3727,16 +3727,19 @@ testToStaticString()
auto str = to_static_wstring(std::numeric_limits<float>::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<double>::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<long double>::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;
}
}