diff options
| author | orivej <[email protected]> | 2022-02-10 16:45:01 +0300 | 
|---|---|---|
| committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:45:01 +0300 | 
| commit | 2d37894b1b037cf24231090eda8589bbb44fb6fc (patch) | |
| tree | be835aa92c6248212e705f25388ebafcf84bc7a1 /library/cpp/monlib | |
| parent | 718c552901d703c502ccbefdfc3c9028d608b947 (diff) | |
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/monlib')
| -rw-r--r-- | library/cpp/monlib/encode/spack/compression.cpp | 4 | ||||
| -rw-r--r-- | library/cpp/monlib/encode/spack/ya.make | 2 | ||||
| -rw-r--r-- | library/cpp/monlib/metrics/metric_value.h | 2 | 
3 files changed, 4 insertions, 4 deletions
| diff --git a/library/cpp/monlib/encode/spack/compression.cpp b/library/cpp/monlib/encode/spack/compression.cpp index 6de23dbb083..0d2152fc851 100644 --- a/library/cpp/monlib/encode/spack/compression.cpp +++ b/library/cpp/monlib/encode/spack/compression.cpp @@ -10,7 +10,7 @@  #include <util/stream/walk.h>  #include <contrib/libs/lz4/lz4.h> -#include <contrib/libs/xxhash/xxhash.h>  +#include <contrib/libs/xxhash/xxhash.h>  #include <contrib/libs/zlib/zlib.h>  #define ZSTD_STATIC_LINKING_ONLY  #include <contrib/libs/zstd/include/zstd.h> @@ -60,7 +60,7 @@ namespace NMonitoring {          struct TXxHash32 {              static TCheckSum Calc(TBlock in) {                  static const ui32 SEED = 0x1337c0de; -                return XXH32(in.data(), in.size(), SEED);  +                return XXH32(in.data(), in.size(), SEED);              }              static bool Check(TBlock in, TCheckSum checksum) { diff --git a/library/cpp/monlib/encode/spack/ya.make b/library/cpp/monlib/encode/spack/ya.make index 71d4169b0d6..78d3061291a 100644 --- a/library/cpp/monlib/encode/spack/ya.make +++ b/library/cpp/monlib/encode/spack/ya.make @@ -17,7 +17,7 @@ PEERDIR(      library/cpp/monlib/exception      contrib/libs/lz4 -    contrib/libs/xxhash  +    contrib/libs/xxhash      contrib/libs/zlib      contrib/libs/zstd  ) diff --git a/library/cpp/monlib/metrics/metric_value.h b/library/cpp/monlib/metrics/metric_value.h index 424f51f40e7..607fcc86022 100644 --- a/library/cpp/monlib/metrics/metric_value.h +++ b/library/cpp/monlib/metrics/metric_value.h @@ -16,7 +16,7 @@ namespace NMonitoring {          template <typename T>          T FromFloatSafe(double d) {              static_assert(std::is_integral<T>::value, "this function only converts floats to integers"); -            Y_ENSURE(::IsValidFloat(d) && d >= Min<T>() && d <= MaxFloor<T>(), "Cannot convert " << d << " to an integer value");  +            Y_ENSURE(::IsValidFloat(d) && d >= Min<T>() && d <= MaxFloor<T>(), "Cannot convert " << d << " to an integer value");              return static_cast<T>(d);          } | 
