diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/serd/serd.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/serd/serd.h b/include/serd/serd.h index 77cf2478..91994912 100644 --- a/include/serd/serd.h +++ b/include/serd/serd.h @@ -137,7 +137,9 @@ typedef enum { SERD_ANON_S = 1u << 1u, ///< Start of anonymous subject SERD_ANON_O = 1u << 2u, ///< Start of anonymous object SERD_LIST_S = 1u << 3u, ///< Start of list subject - SERD_LIST_O = 1u << 4u ///< Start of list object + SERD_LIST_O = 1u << 4u, ///< Start of list object + SERD_TERSE_S = 1u << 5u, ///< Terse serialisation of new subject + SERD_TERSE_O = 1u << 6u ///< Terse serialisation of new object } SerdStatementFlag; /// Bitwise OR of SerdStatementFlag values |