diff options
author | Alexander Smirnov <[email protected]> | 2024-01-31 17:22:33 +0300 |
---|---|---|
committer | Alexander Smirnov <[email protected]> | 2024-01-31 17:22:33 +0300 |
commit | 52be5dbdd420165c68e7e90ba8f1d2f00da041f6 (patch) | |
tree | 5d47f5b2ff4e6a7c8e75d33931a1e683949b7229 /yt/cpp/mapreduce | |
parent | ea57c8867ceca391357c3c5ffcc5ba6738b49adc (diff) | |
parent | 809f0cf2fdfddfbeacc2256ffdbaaf5808ce5ed4 (diff) |
Merge branch 'mergelibs12' into main
Diffstat (limited to 'yt/cpp/mapreduce')
-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 d158a551957..18d564fe09c 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 9c730f1c3a9..3bae208279b 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 9a2f2bf3449..8497c8aae29 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*() { |