From 6133cdbc7d1615de2bfc2ee9f8082a09890bd72b Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 30 Dec 2018 13:52:33 -0500 Subject: Use simpler names for statement flags --- serd/serd.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'serd') diff --git a/serd/serd.h b/serd/serd.h index 6697a878..d81fbd7c 100644 --- a/serd/serd.h +++ b/serd/serd.h @@ -169,11 +169,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; /** -- cgit v1.2.1