From 79886b2e35952056c38d48a66996c89f6380cfac Mon Sep 17 00:00:00 2001 From: Nathan Hourt Date: Sun, 24 Mar 2019 19:45:30 -0500 Subject: [PATCH] Fix warning Not sure what the story is with this file, but it's making a warning and this fixes it. --- src/crypto/crc.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/crypto/crc.cpp b/src/crypto/crc.cpp index 3b95455..2a2b026 100644 --- a/src/crypto/crc.cpp +++ b/src/crypto/crc.cpp @@ -615,6 +615,8 @@ uint64_t _mm_crc32_u64(uint64_t a, uint64_t b ) int main( int argc, char** argv ) { + // Squelch warning about unusued variable crc_c + (void)(crc_c); uint64_t f = 0x1234; uint64_t a = 0x5678; uint32_t f1 = _mm_crc32_u64(f, a);