mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 05:07:45 +00:00
LibCore: Implement operator less-than for Core::DateTime
that just compares their timestamps.
This commit is contained in:
parent
ed28008d78
commit
39997e2ab1
1 changed files with 1 additions and 0 deletions
|
@ -59,6 +59,7 @@ public:
|
||||||
// FIXME: This should be replaced with a proper comparison
|
// FIXME: This should be replaced with a proper comparison
|
||||||
// operator when we get the equivalent of strptime
|
// operator when we get the equivalent of strptime
|
||||||
bool is_before(const String&) const;
|
bool is_before(const String&) const;
|
||||||
|
bool operator<(const DateTime& other) const { return m_timestamp < other.m_timestamp; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
time_t m_timestamp { 0 };
|
time_t m_timestamp { 0 };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue