aboutsummaryrefslogtreecommitdiffstats
path: root/src/node.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/node.c')
-rw-r--r--src/node.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/node.c b/src/node.c
index 7ccf93bd..6b4c11ec 100644
--- a/src/node.c
+++ b/src/node.c
@@ -145,7 +145,7 @@ serd_node_new_uri_from_string(const uint8_t* str,
return serd_node_new_uri(&uri, base, out); // Resolve/Serialise
}
-static inline bool
+static bool
is_uri_path_char(const uint8_t c)
{
if (is_alpha(c) || is_digit(c)) {
@@ -282,7 +282,7 @@ serd_node_new_relative_uri(const SerdURI* uri,
return node;
}
-static inline unsigned
+static unsigned
serd_digits(double abs)
{
const double lg = ceil(log10(floor(abs) + 1.0));