diff options
author | David Robillard <d@drobilla.net> | 2011-01-23 08:53:14 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-01-23 08:53:14 +0000 |
commit | 5de15ccf0a0216e5aadd93ab9095bf15279bfb7c (patch) | |
tree | 94f737be18568e3401afa283d04c035a8c16fe6b /serd/serd.h | |
parent | 5daf94366eddd472cc34ce2af9ebc921167d2c7a (diff) | |
download | serd-5de15ccf0a0216e5aadd93ab9095bf15279bfb7c.tar.gz serd-5de15ccf0a0216e5aadd93ab9095bf15279bfb7c.tar.bz2 serd-5de15ccf0a0216e5aadd93ab9095bf15279bfb7c.zip |
Code cleanup (appease cpplint).
git-svn-id: http://svn.drobilla.net/serd/trunk@45 490d8e77-9747-427b-9fa3-0b8f29cee8a0
Diffstat (limited to 'serd/serd.h')
-rw-r--r-- | serd/serd.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/serd/serd.h b/serd/serd.h index 04d637af..01e58f80 100644 --- a/serd/serd.h +++ b/serd/serd.h @@ -59,8 +59,8 @@ typedef struct SerdWriterImpl* SerdWriter; /**< RDF writer. */ /** RDF syntax */ typedef enum { - SERD_TURTLE = 1, /**< <http://www.w3.org/TeamSubmission/turtle/> */ - SERD_NTRIPLES = 2 /**< <http://www.w3.org/TR/rdf-testcases/#ntriples> */ + SERD_TURTLE = 1, ///< <http://www.w3.org/TeamSubmission/turtle/> + SERD_NTRIPLES = 2 ///< <http://www.w3.org/TR/rdf-testcases/#ntriples> } SerdSyntax; /** Type of a syntactic RDF node. @@ -74,7 +74,6 @@ typedef enum { * @ref SERD_ANON equivalent to SERD_BLANK_ID. */ typedef enum { - /** Literal value. A literal optionally has either an associated language, * or an associated datatype (not both). */ @@ -106,7 +105,6 @@ typedef enum { * Value is identical to a @ref SERD_BLANK_ID value. */ SERD_ANON = 6 - } SerdType; /** @name SerdURI |