diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2024-01-30 10:54:10 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2024-01-30 11:06:27 +0300 |
commit | 061a73e757d2631e96c2d880fdfa5567615a6bb3 (patch) | |
tree | 08201daa307133f856b42188fcdd2906e9d2ce42 /yt/cpp | |
parent | 9e01ee36325fca04e26b57d1cebb0955a042ce20 (diff) | |
download | ydb-061a73e757d2631e96c2d880fdfa5567615a6bb3.tar.gz |
Intermediate changes
Diffstat (limited to 'yt/cpp')
-rw-r--r-- | yt/cpp/mapreduce/http/context.cpp | 5 | ||||
-rw-r--r-- | yt/cpp/mapreduce/http/context.h | 1 | ||||
-rw-r--r-- | yt/cpp/mapreduce/interface/io.h | 6 |
3 files changed, 0 insertions, 12 deletions
diff --git a/yt/cpp/mapreduce/http/context.cpp b/yt/cpp/mapreduce/http/context.cpp index d158a55195..18d564fe09 100644 --- a/yt/cpp/mapreduce/http/context.cpp +++ b/yt/cpp/mapreduce/http/context.cpp @@ -16,11 +16,6 @@ bool operator==(const TClientContext& lhs, const TClientContext& rhs) lhs.ProxyAddress == rhs.ProxyAddress; } -bool operator!=(const TClientContext& lhs, const TClientContext& rhs) -{ - return !(rhs == lhs); -} - //////////////////////////////////////////////////////////////////////////////// } // namespace NYT diff --git a/yt/cpp/mapreduce/http/context.h b/yt/cpp/mapreduce/http/context.h index 9c730f1c3a..3bae208279 100644 --- a/yt/cpp/mapreduce/http/context.h +++ b/yt/cpp/mapreduce/http/context.h @@ -25,7 +25,6 @@ struct TClientContext }; bool operator==(const TClientContext& lhs, const TClientContext& rhs); -bool operator!=(const TClientContext& lhs, const TClientContext& rhs); //////////////////////////////////////////////////////////////////////////////// diff --git a/yt/cpp/mapreduce/interface/io.h b/yt/cpp/mapreduce/interface/io.h index 9a2f2bf344..8497c8aae2 100644 --- a/yt/cpp/mapreduce/interface/io.h +++ b/yt/cpp/mapreduce/interface/io.h @@ -300,12 +300,6 @@ public: return Reader_ == it.Reader_; } - /// Inequality operator. - bool operator!=(const TTableReaderIterator& it) const - { - return Reader_ != it.Reader_; - } - /// Dereference operator. TTableReader<T>& operator*() { |