diff options
author | David Robillard <d@drobilla.net> | 2021-05-29 14:10:27 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2021-05-31 11:37:53 -0400 |
commit | 47ecf6ce2b538a4c8bacb71dd923bc733a075892 (patch) | |
tree | e310fa2d1799ec54fa108fe8b90974ba3943b01c /src/env.c | |
parent | 35e1cea484c860fba9fc702a4e4ea9d284b26f08 (diff) | |
download | serd-47ecf6ce2b538a4c8bacb71dd923bc733a075892.tar.gz serd-47ecf6ce2b538a4c8bacb71dd923bc733a075892.tar.bz2 serd-47ecf6ce2b538a4c8bacb71dd923bc733a075892.zip |
Remove "static inline" for functions in implementation files
This is just noise since these are static functions local to a C compilation
unit.
Diffstat (limited to 'src/env.c')
-rw-r--r-- | src/env.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -99,7 +99,7 @@ serd_env_set_base_uri(SerdEnv* env, const SerdNode* uri) return SERD_SUCCESS; } -static inline SERD_PURE_FUNC SerdPrefix* +SERD_PURE_FUNC static SerdPrefix* serd_env_find(const SerdEnv* env, const uint8_t* name, size_t name_len) { for (size_t i = 0; i < env->n_prefixes; ++i) { |