aboutsummaryrefslogtreecommitdiffstats
path: root/yt/cpp/mapreduce
diff options
context:
space:
mode:
authorrobot-piglet <robot-piglet@yandex-team.com>2024-01-30 10:54:10 +0300
committerAlexander Smirnov <alex@ydb.tech>2024-01-31 14:24:07 +0300
commit324e7ada8dba65f92c7a63af6286ff1332a1cd9e (patch)
tree323a863c67efaa91306a789aa26dd0df4258e29a /yt/cpp/mapreduce
parent3cae04dfa7fb9b08b4204c3459fbe5394867e2a7 (diff)
downloadydb-324e7ada8dba65f92c7a63af6286ff1332a1cd9e.tar.gz
Intermediate changes
Diffstat (limited to 'yt/cpp/mapreduce')
-rw-r--r--yt/cpp/mapreduce/http/context.cpp5
-rw-r--r--yt/cpp/mapreduce/http/context.h1
-rw-r--r--yt/cpp/mapreduce/interface/io.h6
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*()
{