aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorJamieson Christian2003-10-14 20:06:22 +0000
committerJamieson Christian2003-10-14 20:06:22 +0000
commit2968be7670c0cf5a57f53fafd3164a199f10e705 (patch)
treef875d9014715455d7717e5b4f2843713728aa51d /common
parentcc9599c7147a278bb8b7bbd2c913acab53978295 (diff)
downloadscummvm-rg350-2968be7670c0cf5a57f53fafd3164a199f10e705.tar.gz
scummvm-rg350-2968be7670c0cf5a57f53fafd3164a199f10e705.tar.bz2
scummvm-rg350-2968be7670c0cf5a57f53fafd3164a199f10e705.zip
Turn off another annoying MSVC warning
svn-id: r10803
Diffstat (limited to 'common')
-rw-r--r--common/stdafx.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/common/stdafx.h b/common/stdafx.h
index 40e59952ed..ee514ca50f 100644
--- a/common/stdafx.h
+++ b/common/stdafx.h
@@ -39,7 +39,8 @@
#pragma once
#pragma warning( disable : 4068 ) // turn off "unknown pragma" warning
#pragma warning( disable : 4244 ) // turn off "conversion type" warning
-#pragma warning( disable : 4390 ) // turn oof "empty statement" warning for BS2 code
+#pragma warning( disable : 4355 ) // turn off "base member init" warning
+#pragma warning( disable : 4390 ) // turn off "empty statement" warning for BS2 code
#endif
#if !defined(_WIN32_WCE)