diff options
author | David Robillard <d@drobilla.net> | 2022-12-19 17:55:02 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-12-02 18:49:08 -0500 |
commit | 0f9816d67bc67a396607291f845ca2a33c2285a7 (patch) | |
tree | b31fd1b344305dc984a2109084fa183573a0ae43 /include/serd/nodes.h | |
parent | 258ea2ff59bbd2127ea446cf4b9676ad3d7fe53d (diff) | |
download | serd-0f9816d67bc67a396607291f845ca2a33c2285a7.tar.gz serd-0f9816d67bc67a396607291f845ca2a33c2285a7.tar.bz2 serd-0f9816d67bc67a396607291f845ca2a33c2285a7.zip |
Use ZixAllocator directly
Diffstat (limited to 'include/serd/nodes.h')
-rw-r--r-- | include/serd/nodes.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/serd/nodes.h b/include/serd/nodes.h index c23fe024..d466c326 100644 --- a/include/serd/nodes.h +++ b/include/serd/nodes.h @@ -5,8 +5,8 @@ #define SERD_NODES_H #include "serd/attributes.h" -#include "serd/memory.h" #include "serd/node.h" +#include "zix/allocator.h" #include "zix/attributes.h" #include <stddef.h> @@ -24,7 +24,7 @@ typedef struct SerdNodesImpl SerdNodes; /// Create a new node set SERD_API SerdNodes* ZIX_ALLOCATED -serd_nodes_new(SerdAllocator* ZIX_NULLABLE allocator); +serd_nodes_new(ZixAllocator* ZIX_NULLABLE allocator); /** Free `nodes` and all nodes that are stored in it. |