From: Mikko Rasa Date: Wed, 24 Apr 2013 13:08:45 +0000 (+0300) Subject: Use UInt64 for FileSize X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=commitdiff_plain;h=eeb6b89120ab259702f103da01bfd8c06f285e7b Use UInt64 for FileSize The MSVC define was incorrect anyway. --- 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.