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