mirror of
https://github.com/zeek/zeek.git
synced 2025-10-14 04:28:20 +00:00
Fix clang-tidy bugprone-switch-missing-default-case warnings
This commit is contained in:
parent
b20419efaf
commit
2c2a595af5
3 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue