Added GCC 8 to Travis. Updated test so that it warning isn't triggered.

This commit is contained in:
Christopher Di Bella
2018-05-05 09:39:55 +01:00
committed by Martin Hořeňovský
parent d0287e3b56
commit 8d5d49299b
2 changed files with 14 additions and 1 deletions

View File

@@ -304,7 +304,7 @@ TEST_CASE( "toString on const wchar_t pointer returns the string contents", "[to
}
TEST_CASE( "toString on wchar_t const pointer returns the string contents", "[toString]" ) {
auto const s = const_cast<wchar_t* const>( L"wide load" );
auto const s = const_cast<wchar_t*>( L"wide load" );
std::string result = ::Catch::Detail::stringify( s );
CHECK( result == "\"wide load\"" );
}