From: Konstantinos Margaritis Date: Mon, 7 Jun 2021 07:04:57 +0000 (+0300) Subject: fix compilation on C++ X-Git-Tag: v5.4.3+vectorscan~119 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d8b5eb5d1732dd98c6228a5bc56628f0fe017310;p=thirdparty%2Fvectorscan.git fix compilation on C++ --- diff --git a/src/util/arch/common/simd_utils.h b/src/util/arch/common/simd_utils.h index d8499ea2..8a3b52cf 100644 --- a/src/util/arch/common/simd_utils.h +++ b/src/util/arch/common/simd_utils.h @@ -81,10 +81,10 @@ static inline void print_m128_2x64(const char *label, m128 vector) { printf("\n"); } #else -#define print_m128_16x8(label, vector) NULL -#define print_m128_8x16(label, vector) NULL -#define print_m128_4x32(label, vector) NULL -#define print_m128_2x64(label, vector) NULL +#define print_m128_16x8(label, vector) ; +#define print_m128_8x16(label, vector) ; +#define print_m128_4x32(label, vector) ; +#define print_m128_2x64(label, vector) ; #endif /****