diff options
author | David Robillard <d@drobilla.net> | 2011-02-16 00:14:25 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-02-16 00:14:25 +0000 |
commit | fbd7575e56f2349c5bb0fca249dffc25125042e4 (patch) | |
tree | 078f915a63e5b4616d6c976d8295447100bd0e58 /src/sord_internal.h | |
parent | ef59f62b1b85e6992ac196ce9346165675604a94 (diff) | |
download | sord-fbd7575e56f2349c5bb0fca249dffc25125042e4.tar.gz sord-fbd7575e56f2349c5bb0fca249dffc25125042e4.tar.bz2 sord-fbd7575e56f2349c5bb0fca249dffc25125042e4.zip |
Remove unused node user data.
git-svn-id: http://svn.drobilla.net/sord/trunk@25 3d64ff67-21c5-427c-a301-fe4f08042e5a
Diffstat (limited to 'src/sord_internal.h')
-rw-r--r-- | src/sord_internal.h | 13 |
1 files changed, 6 insertions, 7 deletions
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 |