aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <unknown>2001-02-17 10:47:23 +0000
committernyamatongwe <unknown>2001-02-17 10:47:23 +0000
commit9577ae3609d24c408c955fdb105ddb7e204a5e08 (patch)
tree49b01d7fc70bed70ffa4f8e649f17b96e26e4739
parente08f76c40c66a8e9190d79cf8d38173fd1fe37b7 (diff)
downloadscintilla-mirror-9577ae3609d24c408c955fdb105ddb7e204a5e08.tar.gz
Turned off warning 4710 for Microsoft C++ compiler indicating inline method
not inlined.
-rw-r--r--include/Platform.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/Platform.h b/include/Platform.h
index 3e650f4e6..255423bb5 100644
--- a/include/Platform.h
+++ b/include/Platform.h
@@ -46,7 +46,7 @@
#define _WIN32_WINNT 0x0400 // Otherwise some required stuff gets ifdef'd out
// Vassili Bourdo: shut up annoying Visual C++ warnings:
#ifdef _MSC_VER
-#pragma warning(disable: 4800 4244 4309)
+#pragma warning(disable: 4244 4309 4710 4800)
#endif
#include <windows.h>
#include <commctrl.h>