From 47ecf6ce2b538a4c8bacb71dd923bc733a075892 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 29 May 2021 14:10:27 -0400 Subject: Remove "static inline" for functions in implementation files This is just noise since these are static functions local to a C compilation unit. --- src/node.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/node.c') 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)); -- cgit v1.2.1