diff options
Diffstat (limited to 'src/model.h')
-rw-r--r-- | src/model.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/model.h b/src/model.h index a67ba087..f0a54aaa 100644 --- a/src/model.h +++ b/src/model.h @@ -7,16 +7,16 @@ #include "cursor.h" #include "serd/cursor.h" -#include "serd/memory.h" #include "serd/model.h" #include "serd/nodes.h" #include "serd/world.h" +#include "zix/allocator.h" #include "zix/btree.h" #include <stddef.h> struct SerdModelImpl { - SerdAllocator* allocator; ///< Allocator for everything in this model + ZixAllocator* allocator; ///< Allocator for everything in this model SerdWorld* world; ///< World this model is a part of SerdNodes* nodes; ///< Interned nodes in this model ZixBTree* indices[12]; ///< Trees of SerdStatement pointers |