diff options
author | Araq <rumpf_a@web.de> | 2012-08-02 23:25:17 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2012-08-02 23:25:17 +0200 |
commit | 12bc0419da773922a2d952c368bdaa34cf078ecd (patch) | |
tree | 8480422d8a3f46ecc99a1ce6909d9ce9da325b55 /lib/nimbase.h | |
parent | 3c50794a087b3135e01fd9a088e644c623dfcdb5 (diff) | |
download | Nim-12bc0419da773922a2d952c368bdaa34cf078ecd.tar.gz |
fixes 182
Diffstat (limited to 'lib/nimbase.h')
-rwxr-xr-x | lib/nimbase.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/nimbase.h b/lib/nimbase.h index c1dbc39d1..69aa904db 100755 --- a/lib/nimbase.h +++ b/lib/nimbase.h @@ -213,7 +213,7 @@ __clang__ # define __USE_ISOC99 1 #elif (defined(WIN32) || defined(_WIN32) || defined(__WIN32__)) \ - && !defined(__BORLANDC__) && !defined(__POCC__) + && !defined(__BORLANDC__) && !defined(__POCC__) && !defined(_M_X64) /* Win32 doesn't seem to have these functions. ** Therefore implement inline versions of these functions here. |