diff options
author | pg <pg@yandex-team.com> | 2023-08-31 02:33:19 +0300 |
---|---|---|
committer | pg <pg@yandex-team.com> | 2023-08-31 02:51:25 +0300 |
commit | 13004290f7ae5603115f0cd10c6a0e5d0b9c5be9 (patch) | |
tree | 7f2ff67afe5d4bf64952c8eb0e00adccb9456499 | |
parent | b4d13c316d4887470a64a24d959eb3b18a56d370 (diff) | |
download | ydb-13004290f7ae5603115f0cd10c6a0e5d0b9c5be9.tar.gz |
-rw-r--r-- | library/cpp/json/writer/json_value.h | 4 | ||||
-rw-r--r-- | library/cpp/json/writer/json_value_ut.cpp | 7 | ||||
-rw-r--r-- | util/folder/path.h | 4 |
3 files changed, 7 insertions, 8 deletions
diff --git a/library/cpp/json/writer/json_value.h b/library/cpp/json/writer/json_value.h index 3f0f50bc4c..80aa59b985 100644 --- a/library/cpp/json/writer/json_value.h +++ b/library/cpp/json/writer/json_value.h @@ -179,10 +179,6 @@ namespace NJson { /// Non-robust comparison. bool operator==(const TJsonValue& rhs) const; - bool operator!=(const TJsonValue& rhs) const { - return !(*this == rhs); - } - void Swap(TJsonValue& rhs) noexcept; // save using util/ysaveload.h serialization (not to JSON stream) diff --git a/library/cpp/json/writer/json_value_ut.cpp b/library/cpp/json/writer/json_value_ut.cpp index dc7f6affdf..ef62d87aba 100644 --- a/library/cpp/json/writer/json_value_ut.cpp +++ b/library/cpp/json/writer/json_value_ut.cpp @@ -7,6 +7,13 @@ using namespace NJson; Y_UNIT_TEST_SUITE(TJsonValueTest) { + Y_UNIT_TEST(Equal) { + UNIT_ASSERT(1 == TJsonValue(1)); + UNIT_ASSERT(TJsonValue(1) == 1); + UNIT_ASSERT(2 != TJsonValue(1)); + UNIT_ASSERT(TJsonValue(1) != 2); + } + Y_UNIT_TEST(UndefTest) { TJsonValue undef; TJsonValue null(JSON_NULL); diff --git a/util/folder/path.h b/util/folder/path.h index 15532c6252..9f6642d5cb 100644 --- a/util/folder/path.h +++ b/util/folder/path.h @@ -64,10 +64,6 @@ public: return Path_ == that.Path_; } - inline bool operator!=(const TFsPath& that) const { - return Path_ != that.Path_; - } - TFsPath& operator/=(const TFsPath& that); friend TFsPath operator/(const TFsPath& s, const TFsPath& p) { |