X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ftime%2Ftimestamp.h;h=2a5c4e1b73bb85df7b9dc9bd824cdbdf46bc8632;hb=99b9121e2158603372c7313400283b622e6754d8;hp=41fc1e58dbe448b7de8d3f98468dc403e41c6f92;hpb=c7afef88380ebebc8c2b04e48664d73281ec8848;p=libs%2Fcore.git diff --git a/source/time/timestamp.h b/source/time/timestamp.h index 41fc1e5..2a5c4e1 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. */ @@ -48,11 +48,6 @@ public: operator const void *() const { return usec>0 ? this : 0; } -#ifndef WIN32 - operator timeval() const { return rawtime_to_timeval(usec); } - operator timespec() const { return rawtime_to_timespec(usec); } -#endif - static TimeStamp from_unixtime(time_t t) { return TimeStamp(t*1000000LL); } };