diff options
| author | Martin Ridgers <[email protected]> | 2021-09-15 11:17:44 +0200 |
|---|---|---|
| committer | Martin Ridgers <[email protected]> | 2021-09-15 11:17:44 +0200 |
| commit | c1f3797f580cf8bb4837e4f360de55b720804585 (patch) | |
| tree | 33756552d3950ee9e8788ed428f7752e9a99092b /zencore/string.cpp | |
| parent | Correct platform-specific _mm_malloc/aligned_alloc includes (diff) | |
| download | zen-c1f3797f580cf8bb4837e4f360de55b720804585.tar.xz zen-c1f3797f580cf8bb4837e4f360de55b720804585.zip | |
Missing include for pow()
Diffstat (limited to 'zencore/string.cpp')
| -rw-r--r-- | zencore/string.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/zencore/string.cpp b/zencore/string.cpp index 764b3de03..542fec487 100644 --- a/zencore/string.cpp +++ b/zencore/string.cpp @@ -2,6 +2,7 @@ #include <doctest/doctest.h> #include <inttypes.h> +#include <math.h> #include <stdio.h> #include <zencore/memory.h> #include <zencore/string.h> |