From fbd7575e56f2349c5bb0fca249dffc25125042e4 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 16 Feb 2011 00:14:25 +0000 Subject: Remove unused node user data. git-svn-id: http://svn.drobilla.net/sord/trunk@25 3d64ff67-21c5-427c-a301-fe4f08042e5a --- src/sord_internal.h | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'src/sord_internal.h') diff --git a/src/sord_internal.h b/src/sord_internal.h index c38843d..86ee958 100644 --- a/src/sord_internal.h +++ b/src/sord_internal.h @@ -25,13 +25,12 @@ /** Node */ struct _SordNode { - SordNodeType type; ///< SordNodeType - size_t n_bytes; ///< Length of data in bytes (including terminator) - SordCount refs; ///< Reference count (i.e. number of containing quads) - void* user_data; ///< Opaque user data - SordNode datatype; ///< Literal data type (ID of a URI node, or 0) - const char* lang; ///< Literal language (interned string) - uint8_t* buf; ///< Value (string) + SordNodeType type; ///< SordNodeType + size_t n_bytes; ///< Length of data in bytes (including terminator) + SordCount refs; ///< Reference count (i.e. number of containing quads) + SordNode datatype; ///< Literal data type (ID of a URI node, or 0) + const char* lang; ///< Literal language (interned string) + uint8_t* buf; ///< Value (string) }; #endif // SORD_INTERNAL_H -- cgit v1.2.1