mirror of
https://github.com/Kitware/CMake.git
synced 2026-03-05 22:28:35 -06:00
Fix for VS 7 or lower not having ULL postfix for types
This commit is contained in:
@@ -56,8 +56,12 @@
|
||||
#include <stdlib.h>
|
||||
#include <wchar.h>
|
||||
#include <windows.h>
|
||||
#if defined(_MSC_VER) && _MSC_VER <= 1300
|
||||
# define EPOC_TIME (116444736000000000)
|
||||
#else
|
||||
# define EPOC_TIME (116444736000000000ULL)
|
||||
#endif
|
||||
|
||||
#define EPOC_TIME (116444736000000000ULL)
|
||||
|
||||
struct ustat {
|
||||
int64_t st_atime;
|
||||
|
||||
Reference in New Issue
Block a user