diff options
author | Yuriy Glukhov <yuriy.glukhov@gmail.com> | 2018-04-02 19:35:43 +0300 |
---|---|---|
committer | Yuriy Glukhov <yuriy.glukhov@gmail.com> | 2018-04-03 19:05:36 +0300 |
commit | bc724a0a8128e662a97eaa04fcf0134bdb229916 (patch) | |
tree | 13c00b9ebd9d334cf5a02827f4a2c44d342da3d3 /lib | |
parent | 755570bcfba236ae6bad61a8ab39367e44ce3857 (diff) | |
download | Nim-bc724a0a8128e662a97eaa04fcf0134bdb229916.tar.gz |
Fixed compilation of times.nim with mingw 4.9.2 C++ 32bit
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pure/times.nim | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/pure/times.nim b/lib/pure/times.nim index 75b5bac43..c53a300d2 100644 --- a/lib/pure/times.nim +++ b/lib/pure/times.nim @@ -53,8 +53,11 @@ when defined(posix): elif defined(windows): import winlean - # newest version of Visual C++ defines time_t to be of 64 bits - type CTime {.importc: "time_t", header: "<time.h>".} = distinct int64 + when defined(i386) and defined(gcc): + type CTime {.importc: "time_t", header: "<time.h>".} = distinct int32 + else: + # newest version of Visual C++ defines time_t to be of 64 bits + type CTime {.importc: "time_t", header: "<time.h>".} = distinct int64 # visual c's c runtime exposes these under a different name var timezone {.importc: "_timezone", header: "<time.h>".}: int @@ -1398,7 +1401,7 @@ proc getLocalTime*(time: Time): DateTime {.tags: [], raises: [], benign, depreca proc getGMTime*(time: Time): DateTime {.tags: [], raises: [], benign, deprecated.} = ## Converts the calendar time `time` to broken-down time representation, - ## expressed in Coordinated Universal Time (UTC). + ## expressed in Coordinated Universal Time (UTC). ## ## **Deprecated since v0.18.0:** use ``utc`` instead time.utc |