diff options
author | David Robillard <d@drobilla.net> | 2018-12-29 19:56:13 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-12-31 11:37:49 -0500 |
commit | 201888d97b1382632fcd7b335c37030c8a4922d8 (patch) | |
tree | d772f34887be39d41c2f7ed00c5686fc70e399a0 /serd/serd.h | |
parent | 8790f785102ffc5b205ee1ea1fc2586164a6f383 (diff) | |
download | serd-201888d97b1382632fcd7b335c37030c8a4922d8.tar.gz serd-201888d97b1382632fcd7b335c37030c8a4922d8.tar.bz2 serd-201888d97b1382632fcd7b335c37030c8a4922d8.zip |
Rename SerdType to SerdNodeType
The old name has become ambiguous with the expanded scope of serd.
Diffstat (limited to 'serd/serd.h')
-rw-r--r-- | serd/serd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/serd/serd.h b/serd/serd.h index 42547a31..30ab1fc7 100644 --- a/serd/serd.h +++ b/serd/serd.h @@ -230,7 +230,7 @@ typedef enum { <tt>nodeID</tt></a> */ SERD_BLANK = 4 -} SerdType; +} SerdNodeType; /** Flags indicating certain string properties relevant to serialisation. @@ -768,7 +768,7 @@ serd_new_blob(const void* buf, Return the type of a node (SERD_URI, SERD_BLANK, or SERD_LITERAL). */ SERD_API -SerdType +SerdNodeType serd_node_get_type(const SerdNode* node); /** |