diff options
Diffstat (limited to 'Objects/stringlib/count.h')
-rw-r--r-- | Objects/stringlib/count.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/stringlib/count.h b/Objects/stringlib/count.h index 0036f63424..0bd02b5974 100644 --- a/Objects/stringlib/count.h +++ b/Objects/stringlib/count.h @@ -7,7 +7,7 @@ #error must include "stringlib/fastsearch.h" before including this module #endif -Py_LOCAL(Py_ssize_t) +Py_LOCAL_INLINE(Py_ssize_t) stringlib_count(const STRINGLIB_CHAR* str, Py_ssize_t str_len, const STRINGLIB_CHAR* sub, Py_ssize_t sub_len) { |