]> git.tdb.fi Git - libs/core.git/blobdiff - source/time/timestamp.h
Use default member initializers and constructor delegation
[libs/core.git] / source / time / timestamp.h
index 1317b26bc0ba067c7774ef9ecfd6fb7342e2bdff..d16bb06498c957e18ee34fe12ae2e7bdad149033 100644 (file)
@@ -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. */