diff options
Diffstat (limited to 'include/serd/statement.h')
-rw-r--r-- | include/serd/statement.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/include/serd/statement.h b/include/serd/statement.h index 9d987922..a4109958 100644 --- a/include/serd/statement.h +++ b/include/serd/statement.h @@ -32,12 +32,13 @@ typedef enum { typedef enum { SERD_EMPTY_S = 1U << 0U, ///< Empty blank node subject SERD_EMPTY_O = 1U << 1U, ///< Empty blank node object - SERD_ANON_S = 1U << 2U, ///< Start of anonymous subject - SERD_ANON_O = 1U << 3U, ///< Start of anonymous object - SERD_LIST_S = 1U << 4U, ///< Start of list subject - SERD_LIST_O = 1U << 5U, ///< Start of list object - SERD_TERSE_S = 1U << 6U, ///< Start of terse subject - SERD_TERSE_O = 1U << 7U, ///< Start of terse object + SERD_EMPTY_G = 1U << 2U, ///< Empty blank node graph + SERD_ANON_S = 1U << 3U, ///< Start of anonymous subject + SERD_ANON_O = 1U << 4U, ///< Start of anonymous object + SERD_LIST_S = 1U << 5U, ///< Start of list subject + SERD_LIST_O = 1U << 6U, ///< Start of list object + SERD_TERSE_S = 1U << 7U, ///< Start of terse subject + SERD_TERSE_O = 1U << 8U, ///< Start of terse object } SerdStatementFlag; /// Bitwise OR of SerdStatementFlag values |