Fix an unused var warning for RISC-V
diff --git a/snappy.cc b/snappy.cc index 832455b..d6d709a 100644 --- a/snappy.cc +++ b/snappy.cc
@@ -1224,7 +1224,7 @@ void MemCopy64(char* dst, const void* src, size_t size) { // Always copy this many bytes. If that's below size then copy the full 64. constexpr int kShortMemCopy = 32; - + (void)kShortMemCopy; assert(size <= 64); assert(std::less_equal<const void*>()(static_cast<const char*>(src) + size, dst) ||