aboutsummaryrefslogtreecommitdiff
path: root/src/zencore/string.cpp
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2024-11-25 10:26:59 +0100
committerGitHub Enterprise <[email protected]>2024-11-25 10:26:59 +0100
commit1e43506a365c91e411c2375ec55a7d5ad918df0e (patch)
treeacfb1ff64f6f8b038b75129379d50eecd4f2301c /src/zencore/string.cpp
parentInsights-compatible memory tracking (#214) (diff)
downloadzen-1e43506a365c91e411c2375ec55a7d5ad918df0e.tar.xz
zen-1e43506a365c91e411c2375ec55a7d5ad918df0e.zip
split zencore/memory.h -> memoryview.h, memcmp.h (#228)
minor clean-up `zencore/memory.h` used to contain a variety of things including `Malloc` support along with `MemoryView` etc since the memory allocator stuff moved into `zencore/memory/memory.h` there was basically only `MemoryView` and `MemCmp` in there which seemed better to split out into separate headers to avoid overloading `memory.h`
Diffstat (limited to 'src/zencore/string.cpp')
-rw-r--r--src/zencore/string.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zencore/string.cpp b/src/zencore/string.cpp
index 263c49f7e..242d41abe 100644
--- a/src/zencore/string.cpp
+++ b/src/zencore/string.cpp
@@ -1,7 +1,7 @@
// Copyright Epic Games, Inc. All Rights Reserved.
-#include <zencore/memory.h>
#include <zencore/memory/memory.h>
+#include <zencore/memoryview.h>
#include <zencore/string.h>
#include <zencore/testing.h>