X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Ftime%2Ftimestamp.h;h=8068510a6647b00d739fba0d98cf31f5da4bbac8;hp=1317b26bc0ba067c7774ef9ecfd6fb7342e2bdff;hb=9990be018b49e5aae27218e1b8c6aefdb63b38a7;hpb=03bacb2343eb5d17819732582c0866f087e9ce27 diff --git a/source/time/timestamp.h b/source/time/timestamp.h index 1317b26..8068510 100644 --- a/source/time/timestamp.h +++ b/source/time/timestamp.h @@ -16,12 +16,12 @@ For representing user-specified times, use the DateTime class. class TimeStamp { private: - RawTime usec; + RawTime usec = 0; public: /** Construct a TimeStamp that represents an arbitarily distant point in the past. It's guaranteed to be less than any valid timestamp. */ - TimeStamp(): usec(0) { } + TimeStamp() = default; /** Constructs a TimeStamp from a plain number. The purpose of this is to allow serialization together with the raw() function. */ @@ -46,7 +46,7 @@ public: bool operator==(const TimeStamp &t) const { return usec==t.usec; } bool operator!=(const TimeStamp &t) const { return usec!=t.usec; } - operator const void *() const { return usec>0 ? this : 0; } + explicit operator bool() const { return usec>0; } static TimeStamp from_unixtime(time_t t) { return TimeStamp(t*1000000LL); } };