Fix some clang build failures on aarch64
[folly.git] / folly / hash / Checksum.cpp
index 54d6bf1182902e63beb6c34bfb68b0e01e6cbfd3..09a48caf1272a23257305328f507d47f18b58bd0 100644 (file)
@@ -72,8 +72,10 @@ bool crc32_hw_supported() {
 
 #else
 
-uint32_t crc32_hw(const uint8_t *data, size_t nbytes,
-    uint32_t startingChecksum) {
+uint32_t crc32_hw(
+    const uint8_t* /* data */,
+    size_t /* nbytes */,
+    uint32_t /* startingChecksum */) {
   throw std::runtime_error("crc32_hw is not implemented on this platform");
 }