diff options
author | pg <pg@yandex-team.com> | 2023-08-31 19:07:14 +0300 |
---|---|---|
committer | pg <pg@yandex-team.com> | 2023-08-31 19:37:47 +0300 |
commit | 0ea09be71af2c4edddf36d4bb55e743a96eebf28 (patch) | |
tree | e61f957adcda2ebb57e815ef22df24b053e7549d /contrib | |
parent | 58ff10c50539ad75eb9f291655ad387823353ce7 (diff) | |
download | ydb-0ea09be71af2c4edddf36d4bb55e743a96eebf28.tar.gz |
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/libs/poco/Foundation/include/Poco/Timespan.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/contrib/libs/poco/Foundation/include/Poco/Timespan.h b/contrib/libs/poco/Foundation/include/Poco/Timespan.h index fcd742bbff9..0e3e5780c75 100644 --- a/contrib/libs/poco/Foundation/include/Poco/Timespan.h +++ b/contrib/libs/poco/Foundation/include/Poco/Timespan.h @@ -67,14 +67,12 @@ public: /// Swaps the Timespan with another one. bool operator == (const Timespan& ts) const; - bool operator != (const Timespan& ts) const; bool operator > (const Timespan& ts) const; bool operator >= (const Timespan& ts) const; bool operator < (const Timespan& ts) const; bool operator <= (const Timespan& ts) const; bool operator == (TimeDiff microSeconds) const; - bool operator != (TimeDiff microSeconds) const; bool operator > (TimeDiff microSeconds) const; bool operator >= (TimeDiff microSeconds) const; bool operator < (TimeDiff microSeconds) const; @@ -220,12 +218,6 @@ inline bool Timespan::operator == (const Timespan& ts) const } -inline bool Timespan::operator != (const Timespan& ts) const -{ - return _span != ts._span; -} - - inline bool Timespan::operator > (const Timespan& ts) const { return _span > ts._span; @@ -256,12 +248,6 @@ inline bool Timespan::operator == (TimeDiff microSeconds) const } -inline bool Timespan::operator != (TimeDiff microSeconds) const -{ - return _span != microSeconds; -} - - inline bool Timespan::operator > (TimeDiff microSeconds) const { return _span > microSeconds; |