diff options
author | sfan5 <sfan5@live.de> | 2022-12-22 23:55:35 +0100 |
---|---|---|
committer | sfan5 <sfan5@live.de> | 2022-12-23 19:17:08 +0100 |
commit | 07fd32da5062ab219218b3d1cae6d79103ad2c3b (patch) | |
tree | 523ffbc638b6664621591d340055373317c51a93 /examples/AutomatedTest/main.cpp | |
parent | 735af8eec605fcfeffb62f8125e26ade858bae8f (diff) | |
download | irrlicht-07fd32da5062ab219218b3d1cae6d79103ad2c3b.tar.xz |
Replace core::string implementation with std::basic_string
Diffstat (limited to 'examples/AutomatedTest/main.cpp')
-rw-r--r-- | examples/AutomatedTest/main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/AutomatedTest/main.cpp b/examples/AutomatedTest/main.cpp index 6fac6f4..e724176 100644 --- a/examples/AutomatedTest/main.cpp +++ b/examples/AutomatedTest/main.cpp @@ -37,8 +37,10 @@ void run_unit_tests() { test_irr_array();
test_irr_string();
} catch (const std::exception &e) {
+ std::cerr << e.what() << std::endl;
test_fail++;
}
+ std::cout << std::endl;
}
int main(int argc, char *argv[])
|