1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:57:35 +00:00

LibCore: Comment that DateTime is in local time.

The timestamp is always in UTC, but hours/minutes are in local time.
This commit is contained in:
Nico Weber 2020-08-20 10:39:56 -04:00 committed by Andreas Kling
parent 49d6405164
commit 45827cace9

View file

@ -31,6 +31,7 @@
namespace Core {
// Represents a time in local time.
class DateTime {
public:
time_t timestamp() const { return m_timestamp; }