aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgaltsev <galtsev@yandex-team.com>2025-01-10 18:40:43 +0300
committergaltsev <galtsev@yandex-team.com>2025-01-10 18:57:10 +0300
commit9da11ee03422df24948dd627f6f16629b8d6815f (patch)
treed1a37417c41d0b086b5a38d99545b6e9fb6e0773
parent482901d764c0035147506881156d8a784c91b5e8 (diff)
downloadydb-9da11ee03422df24948dd627f6f16629b8d6815f.tar.gz
Style: fix a misplaced curly brace
commit_hash:a5af45ffafe9abbc2f8158d1acc8793322df1d4c
-rw-r--r--yt/yt/core/misc/histogram.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/yt/yt/core/misc/histogram.cpp b/yt/yt/core/misc/histogram.cpp
index 2d59450832..ef055668d0 100644
--- a/yt/yt/core/misc/histogram.cpp
+++ b/yt/yt/core/misc/histogram.cpp
@@ -84,7 +84,8 @@ public:
}
private:
- struct TItem {
+ struct TItem
+ {
i64 Value;
i64 Count;