diff options
Diffstat (limited to 'src/sord_internal.h')
-rw-r--r-- | src/sord_internal.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/sord_internal.h b/src/sord_internal.h index bb1643a..2fd245d 100644 --- a/src/sord_internal.h +++ b/src/sord_internal.h @@ -24,11 +24,11 @@ /** Node */ struct SordNodeImpl { - const char* lang; ///< Literal language (interned string) - SordNode* datatype; ///< Literal data type (ID of a URI node, or 0) - size_t refs; ///< Reference count (# of containing quads) - size_t refs_as_obj; ///< References as a quad object - SerdNode node; ///< Serd node + SordNode* datatype; ///< Literal data type (ID of a URI node, or 0) + size_t refs; ///< Reference count (# of containing quads) + size_t refs_as_obj; ///< References as a quad object + char lang[16]; ///< Language tag + SerdNode node; ///< Serd node }; const char* |