diff options
Diffstat (limited to 'src/sink.h')
-rw-r--r-- | src/sink.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -5,17 +5,17 @@ #define SERD_SRC_SINK_H #include "serd/event.h" -#include "serd/memory.h" #include "serd/sink.h" +#include "zix/allocator.h" /** An interface that receives a stream of RDF data. */ struct SerdSinkImpl { - SerdAllocator* allocator; - void* handle; - SerdFreeFunc free_handle; - SerdEventFunc on_event; + ZixAllocator* allocator; + void* handle; + SerdFreeFunc free_handle; + SerdEventFunc on_event; }; #endif // SERD_SRC_SINK_H |