From 0f9816d67bc67a396607291f845ca2a33c2285a7 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 19 Dec 2022 17:55:02 -0500 Subject: Use ZixAllocator directly --- src/sink.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/sink.h') diff --git a/src/sink.h b/src/sink.h index baed246e..d6a12b3b 100644 --- a/src/sink.h +++ b/src/sink.h @@ -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 -- cgit v1.2.1