aboutsummaryrefslogtreecommitdiffstats
path: root/include/serd/node.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/serd/node.h')
-rw-r--r--include/serd/node.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/include/serd/node.h b/include/serd/node.h
index f745af6d..b308a507 100644
--- a/include/serd/node.h
+++ b/include/serd/node.h
@@ -225,10 +225,9 @@ serd_new_float(float f);
xsd:integer.
@param i Integer value of literal.
- @param datatype Datatype of node, or NULL for xsd:integer.
*/
SERD_API SerdNode* ZIX_ALLOCATED
-serd_new_integer(int64_t i, const SerdNode* ZIX_NULLABLE datatype);
+serd_new_integer(int64_t i);
/**
Create a new canonical xsd:base64Binary literal.
@@ -238,12 +237,9 @@ serd_new_integer(int64_t i, const SerdNode* ZIX_NULLABLE datatype);
@param buf Raw binary data to encode in node.
@param size Size of `buf` in bytes.
- @param datatype Datatype of node, or null for xsd:base64Binary.
*/
SERD_API SerdNode* ZIX_ALLOCATED
-serd_new_base64(const void* ZIX_NONNULL buf,
- size_t size,
- const SerdNode* ZIX_NULLABLE datatype);
+serd_new_base64(const void* ZIX_NONNULL buf, size_t size);
/// Return a deep copy of `node`
SERD_API SerdNode* ZIX_ALLOCATED