diff --git a/autotest/StringTest/StringTest.cpp b/autotest/StringTest/StringTest.cpp index 7aae13b45..8df930ebe 100644 --- a/autotest/StringTest/StringTest.cpp +++ b/autotest/StringTest/StringTest.cpp @@ -105,8 +105,8 @@ CONSOLE_APP_MAIN ASSERT("xx" + x == String("xxab")); ASSERT(x + 'z' == String("abz")); ASSERT('z' + x == String("zab")); - ASSERT(x + (int)'z' == String("abz")); - ASSERT((int)'z' + x == String("zab")); +// ASSERT(x + (int)'z' == String("abz")); Removed because of ambiguity +// ASSERT((int)'z' + x == String("zab")); Removed because of ambiguity String xx = x; String bb = b; Swap(b, x);