aboutsummaryrefslogtreecommitdiffstats
path: root/src/string.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/string.c')
-rw-r--r--src/string.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/string.c b/src/string.c
index 55654033..baf01042 100644
--- a/src/string.c
+++ b/src/string.c
@@ -54,7 +54,7 @@ serd_strerror(SerdStatus status)
return (const uint8_t*)"Unknown error"; // never reached
}
-static inline void
+static void
serd_update_flags(const uint8_t c, SerdNodeFlags* const flags)
{
switch (c) {
@@ -115,7 +115,7 @@ serd_strlen(const uint8_t* str, size_t* n_bytes, SerdNodeFlags* flags)
return n_chars;
}
-static inline double
+static double
read_sign(const char** sptr)
{
double sign = 1.0;