aboutsummaryrefslogtreecommitdiffstats
path: root/src/world.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-12-19 17:55:02 -0500
committerDavid Robillard <d@drobilla.net>2023-12-02 18:49:08 -0500
commit0f9816d67bc67a396607291f845ca2a33c2285a7 (patch)
treeb31fd1b344305dc984a2109084fa183573a0ae43 /src/world.h
parent258ea2ff59bbd2127ea446cf4b9676ad3d7fe53d (diff)
downloadserd-0f9816d67bc67a396607291f845ca2a33c2285a7.tar.gz
serd-0f9816d67bc67a396607291f845ca2a33c2285a7.tar.bz2
serd-0f9816d67bc67a396607291f845ca2a33c2285a7.zip
Use ZixAllocator directly
Diffstat (limited to 'src/world.h')
-rw-r--r--src/world.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/world.h b/src/world.h
index 8033dcec..67dd7916 100644
--- a/src/world.h
+++ b/src/world.h
@@ -7,15 +7,15 @@
#include "log.h"
#include "node.h"
-#include "serd/memory.h"
#include "serd/node.h"
#include "serd/nodes.h"
#include "serd/world.h"
+#include "zix/allocator.h"
#include <stdint.h>
struct SerdWorldImpl {
- SerdAllocator* allocator;
+ ZixAllocator* allocator;
SerdLog log;
SerdLimits limits;
SerdNodes* nodes;