aboutsummaryrefslogtreecommitdiff
path: root/zencore/refcount.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/refcount.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/refcount.cpp')
-rw-r--r--zencore/refcount.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/zencore/refcount.cpp b/zencore/refcount.cpp
index 943635552..33b530b90 100644
--- a/zencore/refcount.cpp
+++ b/zencore/refcount.cpp
@@ -2,7 +2,8 @@
#include <zencore/refcount.h>
-#include <doctest/doctest.h>
+#include <zencore/testing.h>
+
#include <functional>
namespace zen {
@@ -12,6 +13,8 @@ namespace zen {
// Testing related code follows...
//
+#if ZEN_WITH_TESTS
+
struct TestRefClass : public RefCounted
{
~TestRefClass()
@@ -93,4 +96,6 @@ TEST_CASE("RefPtr on Stack allocated object")
CHECK(IsDestroyed == true);
}
+#endif
+
} // namespace zen