From eeb6b89120ab259702f103da01bfd8c06f285e7b Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Wed, 24 Apr 2013 16:08:45 +0300 Subject: [PATCH] Use UInt64 for FileSize The MSVC define was incorrect anyway. --- source/fs/stat.h | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/source/fs/stat.h b/source/fs/stat.h index 8c05771..3f056a5 100644 --- a/source/fs/stat.h +++ b/source/fs/stat.h @@ -2,6 +2,7 @@ #define MSP_FS_STAT_H_ #include +#include #include #include "path.h" @@ -16,11 +17,7 @@ enum FileType SYMLINK }; -#ifdef MSVC -typedef __uint64 FileSize; -#else -typedef unsigned long long FileSize; -#endif +typedef UInt64 FileSize; /** Holds file information. -- 2.43.0