aboutsummaryrefslogtreecommitdiff
path: root/examples/AutomatedTest/test_string.cpp
diff options
context:
space:
mode:
authorsfan5 <sfan5@live.de>2022-12-22 23:55:35 +0100
committersfan5 <sfan5@live.de>2022-12-23 19:17:08 +0100
commit07fd32da5062ab219218b3d1cae6d79103ad2c3b (patch)
tree523ffbc638b6664621591d340055373317c51a93 /examples/AutomatedTest/test_string.cpp
parent735af8eec605fcfeffb62f8125e26ade858bae8f (diff)
downloadirrlicht-07fd32da5062ab219218b3d1cae6d79103ad2c3b.tar.xz
Replace core::string implementation with std::basic_string
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);