From 6e1e62cdffc32768898ccdfd24e046d8b929a45b Mon Sep 17 00:00:00 2001 From: primate Date: Thu, 10 Feb 2022 16:50:30 +0300 Subject: Restoring authorship annotation for . Commit 2 of 2. --- library/cpp/histogram/adaptive/adaptive_histogram.cpp | 12 ++++++------ library/cpp/messagebus/socket_addr.cpp | 2 +- library/cpp/messagebus/socket_addr.h | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/library/cpp/histogram/adaptive/adaptive_histogram.cpp b/library/cpp/histogram/adaptive/adaptive_histogram.cpp index 55d01a5d9fa..cbfc494021e 100644 --- a/library/cpp/histogram/adaptive/adaptive_histogram.cpp +++ b/library/cpp/histogram/adaptive/adaptive_histogram.cpp @@ -351,9 +351,9 @@ namespace NKiwiAggr { double TAdaptiveHistogram::CalcUpperBound(double sum) { Y_VERIFY(sum >= 0, "Sum must be >= 0"); - if (sum == 0.0) { - return MinValue; - } + if (sum == 0.0) { + return MinValue; + } if (Empty()) { return MaxValue; } @@ -392,9 +392,9 @@ namespace NKiwiAggr { double TAdaptiveHistogram::CalcLowerBound(double sum) { Y_VERIFY(sum >= 0, "Sum must be >= 0"); - if (sum == 0.0) { - return MaxValue; - } + if (sum == 0.0) { + return MaxValue; + } if (Empty()) { return MinValue; } diff --git a/library/cpp/messagebus/socket_addr.cpp b/library/cpp/messagebus/socket_addr.cpp index 4e35a641a2b..c1b3a28fbee 100644 --- a/library/cpp/messagebus/socket_addr.cpp +++ b/library/cpp/messagebus/socket_addr.cpp @@ -14,7 +14,7 @@ using namespace NBus::NPrivate; static_assert(ADDR_UNSPEC == 0, "expect ADDR_UNSPEC == 0"); NBus::NPrivate::TBusSocketAddr::TBusSocketAddr(const NAddr::IRemoteAddr* addr) - : IPv6ScopeID(0) + : IPv6ScopeID(0) { const sockaddr* sa = addr->Addr(); diff --git a/library/cpp/messagebus/socket_addr.h b/library/cpp/messagebus/socket_addr.h index 31ad5faaef4..959eafe6895 100644 --- a/library/cpp/messagebus/socket_addr.h +++ b/library/cpp/messagebus/socket_addr.h @@ -87,7 +87,7 @@ namespace NBus { TBusSocketAddr(const NAddr::IRemoteAddr*); TBusSocketAddr(const TNetAddr&); TBusSocketAddr(TStringBuf host, unsigned port); - + TNetAddr ToNetAddr() const; bool operator==(const TBusSocketAddr& that) const { -- cgit v1.3