From b1992a03139b64e718eeaf87686cce8c7c9134d1 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 12 May 2011 01:09:13 +0000 Subject: Abbreviate inline blank node objects. git-svn-id: http://svn.drobilla.net/sord/trunk@109 3d64ff67-21c5-427c-a301-fe4f08042e5a --- src/sord_internal.h | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'src/sord_internal.h') diff --git a/src/sord_internal.h b/src/sord_internal.h index 6935de8..6a5daf8 100644 --- a/src/sord_internal.h +++ b/src/sord_internal.h @@ -24,13 +24,14 @@ /** Node */ struct SordNodeImpl { - uint8_t* buf; ///< Value (string) - const char* lang; ///< Literal language (interned string) - SordNode* datatype; ///< Literal data type (ID of a URI node, or 0) - size_t n_bytes; ///< Length of data in bytes (including NULL) - size_t refs; ///< Reference count (# of containing quads) - SerdNodeFlags flags; ///< String properties - SordNodeType type; ///< SordNodeType + uint8_t* buf; ///< Value (string) + const char* lang; ///< Literal language (interned string) + SordNode* datatype; ///< Literal data type (ID of a URI node, or 0) + size_t n_bytes; ///< Length of data in bytes (including NULL) + size_t refs; ///< Reference count (# of containing quads) + size_t refs_as_obj; ///< References as a quad object + SerdNodeFlags flags; ///< String properties + SordNodeType type; ///< SordNodeType }; const char* -- cgit v1.2.1