diff options
| author | Stefan Boberg <[email protected]> | 2024-11-25 10:26:59 +0100 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2024-11-25 10:26:59 +0100 |
| commit | 1e43506a365c91e411c2375ec55a7d5ad918df0e (patch) | |
| tree | acfb1ff64f6f8b038b75129379d50eecd4f2301c /src/zencore/string.cpp | |
| parent | Insights-compatible memory tracking (#214) (diff) | |
| download | zen-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.cpp | 2 |
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> |