diff options
author | nyamatongwe <unknown> | 2001-02-17 10:47:23 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2001-02-17 10:47:23 +0000 |
commit | 9577ae3609d24c408c955fdb105ddb7e204a5e08 (patch) | |
tree | 49b01d7fc70bed70ffa4f8e649f17b96e26e4739 /include/Platform.h | |
parent | e08f76c40c66a8e9190d79cf8d38173fd1fe37b7 (diff) | |
download | scintilla-mirror-9577ae3609d24c408c955fdb105ddb7e204a5e08.tar.gz |
Turned off warning 4710 for Microsoft C++ compiler indicating inline method
not inlined.
Diffstat (limited to 'include/Platform.h')
-rw-r--r-- | include/Platform.h | 2 |
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> |