aboutsummaryrefslogtreecommitdiffstats
path: root/src/world.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/world.h')
-rw-r--r--src/world.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/world.h b/src/world.h
index 0888b480..8033dcec 100644
--- a/src/world.h
+++ b/src/world.h
@@ -5,6 +5,7 @@
#define SERD_SRC_WORLD_H
#include "log.h"
+#include "node.h"
#include "serd/memory.h"
#include "serd/node.h"
@@ -25,9 +26,13 @@ struct SerdWorldImpl {
const SerdNode* xsd_boolean;
const SerdNode* xsd_decimal;
const SerdNode* xsd_integer;
- SerdNode* blank_node;
uint32_t next_blank_id;
uint32_t next_document_id;
+
+ struct {
+ SerdNode node;
+ char string[16];
+ } blank;
};
#endif // SERD_SRC_WORLD_H