mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 08:44:58 +00:00
AK: Define compound subtraction operator for UnixDateTime
This commit is contained in:
parent
b3d5f9748a
commit
2437064820
1 changed files with 7 additions and 0 deletions
|
@ -439,7 +439,14 @@ public:
|
|||
this->m_offset = this->m_offset + other;
|
||||
return *this;
|
||||
}
|
||||
|
||||
constexpr UnixDateTime operator-(Duration const& other) const { return UnixDateTime { m_offset - other }; }
|
||||
constexpr UnixDateTime& operator-=(Duration const& other)
|
||||
{
|
||||
m_offset = m_offset - other;
|
||||
return *this;
|
||||
}
|
||||
|
||||
// Subtracting two UNIX times yields their time difference.
|
||||
constexpr Duration operator-(UnixDateTime const& other) const { return m_offset - other.m_offset; }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue