diff options
| author | Per Larsson <[email protected]> | 2021-09-20 10:28:38 +0200 |
|---|---|---|
| committer | Per Larsson <[email protected]> | 2021-09-20 10:28:38 +0200 |
| commit | d7e8b3f1435ba50f50393692763508f3224aa9b1 (patch) | |
| tree | ee4357d70cdb9ea1fbcc3836d859cf39fe8e2f42 /zencore/intmath.cpp | |
| parent | Added support for skipping package attachments. (diff) | |
| parent | trivial: include cleanup (diff) | |
| download | zen-d7e8b3f1435ba50f50393692763508f3224aa9b1.tar.xz zen-d7e8b3f1435ba50f50393692763508f3224aa9b1.zip | |
Merge branch 'main' of https://github.com/EpicGames/zen
Diffstat (limited to 'zencore/intmath.cpp')
| -rw-r--r-- | zencore/intmath.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/zencore/intmath.cpp b/zencore/intmath.cpp index 2acfaebd8..f11f5e8aa 100644 --- a/zencore/intmath.cpp +++ b/zencore/intmath.cpp @@ -2,7 +2,7 @@ #include <zencore/intmath.h> -#include <doctest/doctest.h> +#include <zencore/testing.h> namespace zen { @@ -11,6 +11,8 @@ namespace zen { // Testing related code follows... // +#if ZEN_WITH_TESTS + void intmath_forcelink() { @@ -53,4 +55,6 @@ TEST_CASE("intmath") CHECK(CountTrailingZeros64(0x0000'0001'0000'0000ull) == 32); } +#endif + } // namespace zen |