[traffic] Refactor IsoTime comparison operators

Signed-off-by: mvglasow <michael -at- vonglasow.com>
This commit is contained in:
mvglasow
2025-05-16 18:07:02 +03:00
parent 136293c308
commit a39bdee0d1
2 changed files with 6 additions and 6 deletions

View File

@@ -74,8 +74,8 @@ public:
*/
bool IsPast();
friend bool operator< (IsoTime lhs, IsoTime rhs);
friend bool operator> (IsoTime lhs, IsoTime rhs);
bool operator< (IsoTime & rhs);
bool operator> (IsoTime & rhs);
private:
friend std::string DebugPrint(IsoTime time);