]> 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 afa3c949a08221088fbe5965c708c6b3f6a4e294..46b3e4df6908ec3c49e93752da2a3a0668e3b3dc 100644 (file)
@@ -1,25 +1,12 @@
-/* $Id$
-
-This file is part of libmspcore     
-Copyright © 2006,2008  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
 #ifndef MSP_TIME_RAWTIME_H_
 #define MSP_TIME_RAWTIME_H_
 
-#ifndef WIN32
-#include <stdint.h>
-#endif
+#include <cstdint>
 
 namespace Msp {
 namespace Time {
 
-#ifdef WIN32
-typedef __int64 RawTime;
-#else
-typedef int64_t RawTime;
-#endif
+typedef std::int64_t RawTime;
 
 } // namespace Time
 } // namespace Msp