diff options
author | David Robillard <d@drobilla.net> | 2018-12-30 13:52:33 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-06-21 18:12:04 +0200 |
commit | 9a4ac7d20362d8e67551dd8a93f70b741a043877 (patch) | |
tree | ae00d4861e18475b1d158f1ac0a6cbbb32357206 /serd | |
parent | 002585aaebbb1105de0935a52a04eda2e4950508 (diff) | |
download | serd-9a4ac7d20362d8e67551dd8a93f70b741a043877.tar.gz serd-9a4ac7d20362d8e67551dd8a93f70b741a043877.tar.bz2 serd-9a4ac7d20362d8e67551dd8a93f70b741a043877.zip |
Use simpler names for statement flags
Diffstat (limited to 'serd')
-rw-r--r-- | serd/serd.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/serd/serd.h b/serd/serd.h index fc5ab429..bd3b3f19 100644 --- a/serd/serd.h +++ b/serd/serd.h @@ -165,11 +165,11 @@ typedef enum { Flags indicating inline abbreviation information for a statement. */ typedef enum { - SERD_EMPTY_S = 1 << 0, /**< Empty blank node subject */ - SERD_ANON_S_BEGIN = 1 << 1, /**< Start of anonymous subject */ - SERD_ANON_O_BEGIN = 1 << 2, /**< Start of anonymous object */ - SERD_LIST_S_BEGIN = 1 << 3, /**< Start of list subject */ - SERD_LIST_O_BEGIN = 1 << 4, /**< Start of list object */ + SERD_EMPTY_S = 1 << 0, /**< Empty blank node subject */ + 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 */ } SerdStatementFlag; /** |