aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormikhnenko <mikhnenko@yandex-team.com>2023-10-05 12:25:16 +0300
committermikhnenko <mikhnenko@yandex-team.com>2023-10-05 12:55:33 +0300
commit010b93742060ca2c2362568a97c2d080946e06f5 (patch)
tree72b894ae24ba7bfdc8a778f786e3f43d583b24cd
parent2aeb1284cb0378d71f2246cecd51c06dc02e6a0c (diff)
downloadydb-010b93742060ca2c2362568a97c2d080946e06f5.tar.gz
Fix ambiguous-reversed-operator for libcxx updating
-rw-r--r--ydb/library/yql/minikql/comp_nodes/mkql_sort.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ydb/library/yql/minikql/comp_nodes/mkql_sort.cpp b/ydb/library/yql/minikql/comp_nodes/mkql_sort.cpp
index ab7a3a0834f..1f50e100eb8 100644
--- a/ydb/library/yql/minikql/comp_nodes/mkql_sort.cpp
+++ b/ydb/library/yql/minikql/comp_nodes/mkql_sort.cpp
@@ -160,11 +160,11 @@ public:
return tmp;
}
- bool operator==(const TGatherIterator& rhs) {
+ bool operator==(const TGatherIterator& rhs) const& {
return First == rhs.First;
}
- bool operator!=(const TGatherIterator& rhs) {
+ bool operator!=(const TGatherIterator& rhs) const& {
return First != rhs.First;
}