From 3e54af39d08cf0185e60725c898c0666bc71cfc8 Mon Sep 17 00:00:00 2001 From: cxl Date: Sat, 5 Apr 2014 06:18:14 +0000 Subject: [PATCH] .autotest git-svn-id: svn://ultimatepp.org/upp/trunk@7165 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- autotest/StringTest/StringTest.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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);