]> git.tdb.fi Git - libs/core.git/blobdiff - source/time/rawtime.h
Use the standard fixed-size integer types directly
[libs/core.git] / source / time / rawtime.h
index 76524509990986fd55b0eaa78a9cd366bee95c00..46b3e4df6908ec3c49e93752da2a3a0668e3b3dc 100644 (file)
@@ -1,14 +1,12 @@
 #ifndef MSP_TIME_RAWTIME_H_
 #define MSP_TIME_RAWTIME_H_
 
+#include <cstdint>
+
 namespace Msp {
 namespace Time {
 
-#ifdef MSVC
-typedef __int64 RawTime;
-#else
-typedef long long RawTime;
-#endif
+typedef std::int64_t RawTime;
 
 } // namespace Time
 } // namespace Msp