Fix clang-tidy bugprone-switch-missing-default-case warnings

This commit is contained in:
Tim Wojtulewicz 2025-04-17 13:53:56 -07:00
parent b20419efaf
commit 2c2a595af5
3 changed files with 6 additions and 1 deletions

View file

@ -71,6 +71,8 @@ std::unique_ptr<Hasher> Hasher::Unserialize(BrokerDataView data) {
case Default: hasher.reset(new DefaultHasher(k, {h1, h2})); break;
case Double: hasher.reset(new DoubleHasher(k, {h1, h2})); break;
default: break;
}
// Note that the derived classed don't hold any further state of