From 2504ed048f9e5006bf6845ade3d83771a4885a78 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 10 Mar 2019 12:43:14 +0100 Subject: Rename writer flags for consistency with enum type --- serd/serd.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'serd') diff --git a/serd/serd.h b/serd/serd.h index cd2a7031..9b8ab66a 100644 --- a/serd/serd.h +++ b/serd/serd.h @@ -261,9 +261,9 @@ typedef struct { always ASCII). */ typedef enum { - SERD_STYLE_ASCII = 1 << 0, ///< Escape all non-ASCII characters - SERD_STYLE_UNQUALIFIED = 1 << 1, ///< Do not shorten URIs into CURIEs - SERD_STYLE_UNRESOLVED = 1 << 2 ///< Do not make URIs relative + SERD_WRITE_ASCII = 1 << 0, ///< Escape all non-ASCII characters + SERD_WRITE_UNQUALIFIED = 1 << 1, ///< Do not shorten URIs into CURIEs + SERD_WRITE_UNRESOLVED = 1 << 2 ///< Do not make URIs relative } SerdWriterFlag; /// Bitwise OR of SerdWriterFlag values -- cgit v1.2.1