]> git.tdb.fi Git - libs/core.git/blobdiff - source/io/seekable.h
Use the standard fixed-size integer types directly
[libs/core.git] / source / io / seekable.h
index f0170b40f5af126de2c641431d7a2033cc1f1415..99915d850efc3a8879d88a7e9e3e9de7e11eb531 100644 (file)
@@ -1,8 +1,8 @@
 #ifndef MSP_IO_SEEKABLE_H_
 #define MSP_IO_SEEKABLE_H_
 
+#include <cstdint>
 #include <stdexcept>
-#include <msp/core/inttypes.h>
 #include "base.h"
 
 namespace Msp {
@@ -10,7 +10,7 @@ namespace IO {
 
 class Handle;
 
-typedef Int64 SeekOffset;
+typedef std::int64_t SeekOffset;
 
 enum SeekType
 {