diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2018-10-29 19:54:58 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2018-10-29 19:54:58 (GMT) |
commit | 22a5d73ebf204659f328464091641c1b71c865c1 (patch) | |
tree | ec136d6fa293df5bb419b985599a5a72ea94d676 /win | |
parent | 030a749dc8360c542c0803ffe5a4f4c011b746f4 (diff) | |
download | tcl-22a5d73ebf204659f328464091641c1b71c865c1.zip tcl-22a5d73ebf204659f328464091641c1b71c865c1.tar.gz tcl-22a5d73ebf204659f328464091641c1b71c865c1.tar.bz2 |
squelch some warnings on higher Visual Studio versions: we are not going to bother on this any more.
Diffstat (limited to 'win')
-rw-r--r-- | win/tclWinPort.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/win/tclWinPort.h b/win/tclWinPort.h index 0f7d1fa..c30d1bd 100644 --- a/win/tclWinPort.h +++ b/win/tclWinPort.h @@ -382,6 +382,8 @@ typedef DWORD_PTR * PDWORD_PTR; #if defined(_MSC_VER) && (_MSC_VER >= 1400) # pragma warning(disable:4244) # pragma warning(disable:4267) +# pragma warning(disable:4311) +# pragma warning(disable:4312) # pragma warning(disable:4996) #endif |