[fix] making a few internal functions static

This commit is contained in:
Al
2017-12-29 04:50:08 -05:00
parent 098babfdee
commit cadf52d19f
3 changed files with 14 additions and 14 deletions

View File

@@ -169,7 +169,7 @@ cstring_array *expanded_component_combined(char *input, libpostal_normalize_opti
}
}
inline cstring_array *expanded_component_root_with_fallback(char *input, libpostal_normalize_options_t options, size_t *n) {
static inline cstring_array *expanded_component_root_with_fallback(char *input, libpostal_normalize_options_t options, size_t *n) {
cstring_array *root_expansions = expand_address_root(input, options, n);
if (*n > 0) {
return root_expansions;