From 4e7bf77fd35a76ef6b3e97e6182c58698d86421f Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 5 Jul 2018 21:01:12 +0200 Subject: Simplify writer style options --- serd/serd.h | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'serd/serd.h') diff --git a/serd/serd.h b/serd/serd.h index cf079842..3b6fa3e3 100644 --- a/serd/serd.h +++ b/serd/serd.h @@ -304,11 +304,8 @@ typedef struct { always ASCII). */ typedef enum { - SERD_STYLE_ABBREVIATED = 1, /**< Abbreviate triples when possible. */ - SERD_STYLE_ASCII = 1 << 1, /**< Escape all non-ASCII characters. */ - SERD_STYLE_RESOLVED = 1 << 2, /**< Resolve URIs against base URI. */ - SERD_STYLE_CURIED = 1 << 3, /**< Shorten URIs into CURIEs. */ - SERD_STYLE_BULK = 1 << 4 /**< Write output in pages. */ + SERD_STYLE_ASCII = 1 << 0, /**< Escape all non-ASCII characters. */ + SERD_STYLE_BULK = 1 << 1 /**< Write output in pages. */ } SerdStyle; /** -- cgit v1.2.1