summaryrefslogtreecommitdiff
path: root/lsp-json.c
diff options
context:
space:
mode:
Diffstat (limited to 'lsp-json.c')
-rw-r--r--lsp-json.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lsp-json.c b/lsp-json.c
index 6d6765d..1e77812 100644
--- a/lsp-json.c
+++ b/lsp-json.c
@@ -89,7 +89,7 @@ void json_debug_print_value(const JSON *json, JSONValue value);
// defining this instead of using isspace seems to be faster
// probably because isspace depends on the locale.
-static inline bool json_is_space(char c) {
+static bool json_is_space(char c) {
return c == ' ' || c == '\n' || c == '\r' || c == '\t';
}