diff --git a/table/block_based_table_builder.cc b/table/block_based_table_builder.cc index 6a848ccdf..c8c86ce13 100644 --- a/table/block_based_table_builder.cc +++ b/table/block_based_table_builder.cc @@ -752,7 +752,7 @@ void BlockBasedTableBuilder::WriteRawBlock(const Slice& block_contents, case kNoChecksum: // we don't support no checksum yet assert(false); - // intentional fallthrough in release binary + // intentional fallthrough case kCRC32c: { auto crc = crc32c::Value(block_contents.data(), block_contents.size()); crc = crc32c::Extend(crc, trailer, 1); // Extend to cover block type