diff options
author | mihaild <[email protected]> | 2022-02-10 16:46:59 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:46:59 +0300 |
commit | 55fa8c7df8dba9a6fda8a807e529a9d04bd88580 (patch) | |
tree | b83306b6e37edeea782e9eed673d89286c4fef35 /util/digest/city.h | |
parent | 246417ad6168d3f7ab4a0cf1c79ba4259f7c45ae (diff) |
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'util/digest/city.h')
-rw-r--r-- | util/digest/city.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util/digest/city.h b/util/digest/city.h index aca3e1f8cbb..675a798074f 100644 --- a/util/digest/city.h +++ b/util/digest/city.h @@ -3,13 +3,13 @@ #include <util/generic/utility.h> #include <util/generic/strbuf.h> -#include <utility> +#include <utility> // NOTE: These functions provide CityHash 1.0 implementation whose results are *different* from // the mainline version of CityHash. -using uint128 = std::pair<ui64, ui64>; - +using uint128 = std::pair<ui64, ui64>; + constexpr ui64 Uint128Low64(const uint128& x) { return x.first; } |