From 2e6e631333aa89769f14bc8628ad0ae4bc58aadf Mon Sep 17 00:00:00 2001 From: Rob Parolin Date: Wed, 8 Nov 2017 13:17:56 -0800 Subject: [PATCH] gcc compiler fix --- test/source/TestString.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/source/TestString.inl b/test/source/TestString.inl index a2bffb2f..6b7ffaee 100644 --- a/test/source/TestString.inl +++ b/test/source/TestString.inl @@ -38,7 +38,7 @@ int TEST_STRING_NAME() VERIFY(str.empty()); } - if(!is_same_v && (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::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"));