]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Remove always-inline as it breaks build with specific flags
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Tue, 3 Apr 2018 13:50:37 +0000 (14:50 +0100)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Tue, 3 Apr 2018 13:50:37 +0000 (14:50 +0100)
src/libutil/str_util.c

index 5fe8774a6469a20d539e824b80cc4f4d5584b08e..4d1b22076221a0c3b781a5541bc68e28b6ce42f2 100644 (file)
@@ -1164,10 +1164,8 @@ rspamd_header_value_fold (const gchar *name,
        return res;
 }
 
-static inline bool rspamd_substring_cmp_func (guchar a, guchar b) RSPAMD_ALWAYS_INLINE;
 static inline bool rspamd_substring_cmp_func (guchar a, guchar b) { return a == b; }
 
-static inline bool rspamd_substring_casecmp_func (guchar a, guchar b) RSPAMD_ALWAYS_INLINE;
 static inline bool rspamd_substring_casecmp_func (guchar a, guchar b) { return lc_map[a] == lc_map[b]; }
 
 typedef bool (*rspamd_cmpchar_func_t) (guchar a, guchar b);