Skip to content

Commit

Permalink
gcc compiler fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rparolin committed Nov 8, 2017
1 parent d269f2b commit 2e6e631
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/source/TestString.inl
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ int TEST_STRING_NAME()
VERIFY(str.empty());
}

if(!is_same_v<typename StringType::value_type, char32_t> && (EA_PLATFORM_WORD_SIZE == 4)) // not even a single char32_t (plus null-terminator) can fit into the SSO buffer on 32-bit platforms
if(!is_same<typename StringType::value_type, char32_t>::value && (EA_PLATFORM_WORD_SIZE == 4)) // not even a single char32_t (plus null-terminator) can fit into the SSO buffer on 32-bit platforms
{
SSOString str(LITERAL("a"));
VERIFY(str == LITERAL("a"));
Expand Down

0 comments on commit 2e6e631

Please sign in to comment.