summaryrefslogtreecommitdiffstats
path: root/library/cpp
diff options
context:
space:
mode:
authorapollo1321 <[email protected]>2025-08-28 11:09:48 +0300
committerapollo1321 <[email protected]>2025-08-28 12:23:41 +0300
commit7ddec96b50ba5d3ddf1ebc4f1fb5901b2008445f (patch)
tree3b7363423abbb382abb463958118eaf9559aa2e3 /library/cpp
parent44541f276187d7e93583878f231f827cfe6335fe (diff)
Add tests for TSortedStagingArea and fix bugs
commit_hash:03e41d2fa64fd120f7422f961fafa24b7f255e4d
Diffstat (limited to 'library/cpp')
-rw-r--r--library/cpp/yt/containers/enum_indexed_array.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/library/cpp/yt/containers/enum_indexed_array.h b/library/cpp/yt/containers/enum_indexed_array.h
index bae6a75237a..9738fa9c79f 100644
--- a/library/cpp/yt/containers/enum_indexed_array.h
+++ b/library/cpp/yt/containers/enum_indexed_array.h
@@ -37,6 +37,8 @@ public:
constexpr TEnumIndexedArray& operator=(const TEnumIndexedArray&) = default;
constexpr TEnumIndexedArray& operator=(TEnumIndexedArray&&) = default;
+ constexpr bool operator==(const TEnumIndexedArray&) const = default;
+
T& operator[] (E index);
const T& operator[] (E index) const;