X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Ftime%2Ftimestamp.h;fp=source%2Ftime%2Ftimestamp.h;h=d16bb06498c957e18ee34fe12ae2e7bdad149033;hp=1317b26bc0ba067c7774ef9ecfd6fb7342e2bdff;hb=122846f0881673770d88eff7d925ecf25c01b62e;hpb=b116e161e377da0e4e52f07745ecb2d22f962ae9 diff --git a/source/time/timestamp.h b/source/time/timestamp.h index 1317b26..d16bb06 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() { } /** Constructs a TimeStamp from a plain number. The purpose of this is to allow serialization together with the raw() function. */