diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-06-12 10:24:52 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-06-12 10:24:52 (GMT) |
commit | c90aa17e6ef729c6cab8a8f6a1ca988c9c3d4b62 (patch) | |
tree | 9cc94e8464ccedcfab9a93faa54b28857dc8549d /win | |
parent | a9614d87b805cb106c4876c73858300e3c4359a3 (diff) | |
download | tcl-c90aa17e6ef729c6cab8a8f6a1ca988c9c3d4b62.zip tcl-c90aa17e6ef729c6cab8a8f6a1ca988c9c3d4b62.tar.gz tcl-c90aa17e6ef729c6cab8a8f6a1ca988c9c3d4b62.tar.bz2 |
Silence various warnings when doing a 64-bit build with MSVC: Those warnings can only _really_ be fixed in "novem" (so, don't silence them there)
Diffstat (limited to 'win')
-rw-r--r-- | win/tclWinPort.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/win/tclWinPort.h b/win/tclWinPort.h index 987d45b..b545a09 100644 --- a/win/tclWinPort.h +++ b/win/tclWinPort.h @@ -350,9 +350,9 @@ typedef DWORD_PTR * PDWORD_PTR; #if defined(_MSC_VER) || defined(__MINGW32__) # define environ _environ -# if defined(_MSC_VER) && (_MSC_VER < 1600) +# if defined(_MSC_VER) && (_MSC_VER < 1600) # define hypot _hypot -# endif +# endif # define exception _exception # undef EDEADLOCK # if defined(__MINGW32__) && !defined(__MSVCRT__) @@ -381,8 +381,10 @@ typedef DWORD_PTR * PDWORD_PTR; * including the *printf family and others. Tell it to shut up. * (_MSC_VER is 1200 for VC6, 1300 or 1310 for vc7.net, 1400 for 8.0) */ -#if _MSC_VER >= 1400 -#pragma warning(disable:4996) +#if defined(_MSC_VER) && (_MSC_VER >= 1400) +# pragma warning(disable:4244) +# pragma warning(disable:4267) +# pragma warning(disable:4996) #endif |