From 9a4ac7d20362d8e67551dd8a93f70b741a043877 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/serd.h') 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; /** -- cgit v1.2.1