cppcheck-suppress unsignedLessThanZero

This commit is contained in:
gtsoul-tech 2024-11-11 18:47:57 +02:00
parent 76e059bab8
commit 47cd90aaa7

View File

@ -127,6 +127,7 @@ static really_really_inline
m128 lshift64_m128(m128 a, unsigned b) {
#if defined(HAVE__BUILTIN_CONSTANT_P)
if (__builtin_constant_p(b)) {
// cppcheck-suppress unsignedLessThanZero
return _mm_slli_epi64(a, b);
}
#endif