diff options
| author | akhropov <[email protected]> | 2025-11-18 07:18:33 +0300 |
|---|---|---|
| committer | akhropov <[email protected]> | 2025-11-18 07:31:21 +0300 |
| commit | 37d44233ebfec0401cef46055a89375faf93ea59 (patch) | |
| tree | f0cf9f03f57ff6e31c177832bb7b980b9614067b /library/cpp | |
| parent | 19c15f386f2a181b98f29a7178bc8ac3476dd5dd (diff) | |
Make TMurmurHash2A ctor explicit
commit_hash:75d52d415f51a89383bdbe69eb4bacf9285ebd8f
Diffstat (limited to 'library/cpp')
| -rw-r--r-- | library/cpp/digest/murmur/murmur.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/digest/murmur/murmur.h b/library/cpp/digest/murmur/murmur.h index cbf28864128..8ca20b378e8 100644 --- a/library/cpp/digest/murmur/murmur.h +++ b/library/cpp/digest/murmur/murmur.h @@ -37,7 +37,7 @@ private: using TValue = typename TTraits::TValue; public: - inline TMurmurHash2A(TValue seed = 0) + inline explicit TMurmurHash2A(TValue seed = 0) : Hash(seed) { } |
