aboutsummaryrefslogtreecommitdiff
path: root/examples/AutomatedTest/test_string.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/AutomatedTest/test_string.cpp')
-rw-r--r--examples/AutomatedTest/test_string.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/examples/AutomatedTest/test_string.cpp b/examples/AutomatedTest/test_string.cpp
index bac22cf..a9b35b1 100644
--- a/examples/AutomatedTest/test_string.cpp
+++ b/examples/AutomatedTest/test_string.cpp
@@ -36,11 +36,6 @@ static void test_basics()
// operator=
s = stringw(L"abcdef");
UASSERTSTR(s, "abcdef");
- s = stringc("test");
- s = s.c_str();
- UASSERTSTR(s, "test");
- s = s.c_str() + 1;
- UASSERTSTR(s, "est");
s = L"abcdef";
UASSERTSTR(s, "abcdef");
s = static_cast<const char*>(nullptr);