Add definition for forcing inlining.

This commit is contained in:
2021-10-05 00:31:21 +01:00
parent 00d528549e
commit d449bc768c

View File

@@ -27,4 +27,12 @@
#endif
#endif
#ifdef _MSC_VER
#define FORCE_INLINE static inline
#else
#define FORCE_INLINE static inline __attribute__((always_inline))
#endif
#include "simd.h"
#endif // AARU_CHECKSUMS_NATIVE_LIBRARY_H