aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/apache/orc/c++/src/Murmur3.hh
diff options
context:
space:
mode:
authorthegeorg <thegeorg@yandex-team.com>2024-03-17 04:47:32 +0300
committerthegeorg <thegeorg@yandex-team.com>2024-03-17 04:57:12 +0300
commit0816a937aebb4bb8ff5d68730c625cb1c99c9b4b (patch)
tree45dd2b2d18017590838384a1a7687279ac280444 /contrib/libs/apache/orc/c++/src/Murmur3.hh
parent6d5eb3aff8e43031b7dcb8be42d649799cd8a6c3 (diff)
downloadydb-0816a937aebb4bb8ff5d68730c625cb1c99c9b4b.tar.gz
Update contrib/libs/apache/orc to 2.0.0
28031d32eb02ad8a790abc416b7db3264738c474
Diffstat (limited to 'contrib/libs/apache/orc/c++/src/Murmur3.hh')
-rw-r--r--contrib/libs/apache/orc/c++/src/Murmur3.hh10
1 files changed, 5 insertions, 5 deletions
diff --git a/contrib/libs/apache/orc/c++/src/Murmur3.hh b/contrib/libs/apache/orc/c++/src/Murmur3.hh
index 02391811b0..e3db8654bf 100644
--- a/contrib/libs/apache/orc/c++/src/Murmur3.hh
+++ b/contrib/libs/apache/orc/c++/src/Murmur3.hh
@@ -24,17 +24,17 @@
namespace orc {
class Murmur3 {
- public:
+ public:
static const uint32_t DEFAULT_SEED = 104729;
static const uint64_t NULL_HASHCODE = 2862933555777941757LL;
- static uint64_t hash64(const uint8_t *data, uint32_t len);
+ static uint64_t hash64(const uint8_t* data, uint32_t len);
- private:
+ private:
static uint64_t fmix64(uint64_t value);
static uint64_t hash64(const uint8_t* data, uint32_t len, uint32_t seed);
};
-}
+} // namespace orc
-#endif //ORC_MURMUR3_HH
+#endif // ORC_MURMUR3_HH