summaryrefslogtreecommitdiff
path: root/lsp-json.c
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2023-01-01 23:47:52 -0500
committerpommicket <pommicket@gmail.com>2023-01-01 23:47:52 -0500
commit20ac640a6d0b8eb6343709ae6ef921b41a31a726 (patch)
tree32165e91d2851b35cae59691b84dfaf4aecc7b4d /lsp-json.c
parent8c16344d5279eef6ed6ad18d4de7e8a2a5bf2f98 (diff)
restructure syntax.c
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';
}