]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
Disable unused variable warning
authorDanila Kutenin <kutdanila@yandex.ru>
Sun, 22 May 2022 10:50:33 +0000 (10:50 +0000)
committerDanila Kutenin <kutdanila@yandex.ru>
Sun, 22 May 2022 10:50:33 +0000 (10:50 +0000)
lib/compress/zstd_lazy.c

index d897832bae098495025e74378103f0cdb8922a13..5e9a06b9eee3ddf1a94bb15b725f987130e34ede 100644 (file)
@@ -982,6 +982,7 @@ FORCE_INLINE_TEMPLATE U32
 ZSTD_row_matchMaskGroupWidth(const U32 rowEntries) {
   assert((rowEntries == 16) || (rowEntries == 32) || rowEntries == 64);
   assert(rowEntries <= ZSTD_ROW_HASH_MAX_ENTRIES);
+  (void)rowEntries;
 #if defined(ZSTD_ARCH_ARM_NEON)
   if (rowEntries == 16) {
     return 4;