File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ static inline int trailing_zeros(int input) {
59
59
#include <arm_neon.h>
60
60
61
61
#define FIND_SIMD_IMPLEMENTATION_DEFINED 1
62
- static SIMD_Implementation find_simd_implementation (void ) {
62
+ static inline SIMD_Implementation find_simd_implementation (void ) {
63
63
return SIMD_NEON ;
64
64
}
65
65
@@ -161,7 +161,7 @@ static inline TARGET_SSE2 FORCE_INLINE int string_scan_simd_sse2(const char **pt
161
161
#include <cpuid.h>
162
162
#endif /* HAVE_CPUID_H */
163
163
164
- static SIMD_Implementation find_simd_implementation (void ) {
164
+ static inline SIMD_Implementation find_simd_implementation (void ) {
165
165
166
166
#if defined(__GNUC__ ) || defined(__clang__ )
167
167
#ifdef __GNUC__
@@ -183,7 +183,7 @@ static SIMD_Implementation find_simd_implementation(void) {
183
183
#endif /* JSON_ENABLE_SIMD */
184
184
185
185
#ifndef FIND_SIMD_IMPLEMENTATION_DEFINED
186
- static SIMD_Implementation find_simd_implementation (void ) {
186
+ static inline SIMD_Implementation find_simd_implementation (void ) {
187
187
return SIMD_NONE ;
188
188
}
189
189
#endif
You can’t perform that action at this time.
0 commit comments