diff options
| author | vlmarkov <[email protected]> | 2022-02-10 16:46:07 +0300 | 
|---|---|---|
| committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:46:07 +0300 | 
| commit | dbd3185956979f21ea16ef90c1ba4aa2d6a75fae (patch) | |
| tree | 1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /util/digest | |
| parent | 6a382399c9a1053abd7d772ec30ca9873f7429a1 (diff) | |
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'util/digest')
| -rw-r--r-- | util/digest/murmur.cpp | 20 | 
1 files changed, 10 insertions, 10 deletions
diff --git a/util/digest/murmur.cpp b/util/digest/murmur.cpp index 8b341b51fa5..b041d3e5f23 100644 --- a/util/digest/murmur.cpp +++ b/util/digest/murmur.cpp @@ -40,16 +40,16 @@ namespace NMurmurPrivate {          switch (iter.Left()) {              case 3:                  h ^= data[2] << 16; -                [[fallthrough]];  +                [[fallthrough]];              case 2:                  h ^= data[1] << 8; -                [[fallthrough]];  +                [[fallthrough]];              case 1:                  h ^= data[0];                  h *= m; -                break;  +                break;          };          h ^= h >> 13; @@ -90,32 +90,32 @@ namespace NMurmurPrivate {          switch (iter.Left()) {              case 7:                  h ^= ui64(data2[6]) << 48; -                [[fallthrough]];  +                [[fallthrough]];              case 6:                  h ^= ui64(data2[5]) << 40; -                [[fallthrough]];  +                [[fallthrough]];              case 5:                  h ^= ui64(data2[4]) << 32; -                [[fallthrough]];  +                [[fallthrough]];              case 4:                  h ^= ui64(data2[3]) << 24; -                [[fallthrough]];  +                [[fallthrough]];              case 3:                  h ^= ui64(data2[2]) << 16; -                [[fallthrough]];  +                [[fallthrough]];              case 2:                  h ^= ui64(data2[1]) << 8; -                [[fallthrough]];  +                [[fallthrough]];              case 1:                  h ^= ui64(data2[0]);                  h *= m; -                break;  +                break;          }          h ^= h >> r;  | 
