aboutsummaryrefslogtreecommitdiff
path: root/zencore/string.cpp
diff options
context:
space:
mode:
authorPer Larsson <[email protected]>2021-09-20 10:28:38 +0200
committerPer Larsson <[email protected]>2021-09-20 10:28:38 +0200
commitd7e8b3f1435ba50f50393692763508f3224aa9b1 (patch)
treeee4357d70cdb9ea1fbcc3836d859cf39fe8e2f42 /zencore/string.cpp
parentAdded support for skipping package attachments. (diff)
parenttrivial: include cleanup (diff)
downloadzen-d7e8b3f1435ba50f50393692763508f3224aa9b1.tar.xz
zen-d7e8b3f1435ba50f50393692763508f3224aa9b1.zip
Merge branch 'main' of https://github.com/EpicGames/zen
Diffstat (limited to 'zencore/string.cpp')
-rw-r--r--zencore/string.cpp11
1 files changed, 8 insertions, 3 deletions
diff --git a/zencore/string.cpp b/zencore/string.cpp
index ce1b6d675..6dcdc9542 100644
--- a/zencore/string.cpp
+++ b/zencore/string.cpp
@@ -1,11 +1,12 @@
// Copyright Epic Games, Inc. All Rights Reserved.
-#include <doctest/doctest.h>
+#include <zencore/memory.h>
+#include <zencore/string.h>
+#include <zencore/testing.h>
+
#include <inttypes.h>
#include <math.h>
#include <stdio.h>
-#include <zencore/memory.h>
-#include <zencore/string.h>
#include <exception>
#include <ostream>
#include <stdexcept>
@@ -452,6 +453,8 @@ template class StringBuilderImpl<wchar_t>;
// Unit tests
//
+#if ZEN_WITH_TESTS
+
TEST_CASE("niceNum")
{
char Buffer[16];
@@ -952,4 +955,6 @@ TEST_CASE("string")
}
}
+#endif
+
} // namespace zen