diff options
author | pg <[email protected]> | 2023-08-31 22:55:14 +0300 |
---|---|---|
committer | pg <[email protected]> | 2023-08-31 23:09:44 +0300 |
commit | b280be339f05ce1309d490f2ddd3e6aed5f9759d (patch) | |
tree | 67c518b622624dccedba36dbf51402f669e913a7 | |
parent | 3cad57a444aa19364666afb79793332dfe326670 (diff) |
-rw-r--r-- | yt/cpp/mapreduce/interface/common.cpp | 15 | ||||
-rw-r--r-- | yt/cpp/mapreduce/interface/common.h | 3 |
2 files changed, 0 insertions, 18 deletions
diff --git a/yt/cpp/mapreduce/interface/common.cpp b/yt/cpp/mapreduce/interface/common.cpp index f6d60127cea..590fac3a050 100644 --- a/yt/cpp/mapreduce/interface/common.cpp +++ b/yt/cpp/mapreduce/interface/common.cpp @@ -71,31 +71,16 @@ bool TSortColumn::operator == (TStringBuf rhsName) const return Name_ == rhsName; } -bool TSortColumn::operator != (TStringBuf rhsName) const -{ - return !(*this == rhsName); -} - bool TSortColumn::operator == (const TString& rhsName) const { return *this == static_cast<TStringBuf>(rhsName); } -bool TSortColumn::operator != (const TString& rhsName) const -{ - return !(*this == rhsName); -} - bool TSortColumn::operator == (const char* rhsName) const { return *this == static_cast<TStringBuf>(rhsName); } -bool TSortColumn::operator != (const char* rhsName) const -{ - return !(*this == rhsName); -} - TSortColumn::operator TStringBuf() const { EnsureAscending(); diff --git a/yt/cpp/mapreduce/interface/common.h b/yt/cpp/mapreduce/interface/common.h index b1754ade70d..366ce2cff27 100644 --- a/yt/cpp/mapreduce/interface/common.h +++ b/yt/cpp/mapreduce/interface/common.h @@ -518,11 +518,8 @@ public: /// @} bool operator == (const TStringBuf rhsName) const; - bool operator != (const TStringBuf rhsName) const; bool operator == (const TString& rhsName) const; - bool operator != (const TString& rhsName) const; bool operator == (const char* rhsName) const; - bool operator != (const char* rhsName) const; // Intentionally implicit conversions. operator TString() const; |