aboutsummaryrefslogtreecommitdiff
path: root/common/stdafx.h
diff options
context:
space:
mode:
authorPaweł Kołodziejski2003-07-30 22:04:31 +0000
committerPaweł Kołodziejski2003-07-30 22:04:31 +0000
commitefc32d9dbc8408ed2f59da8c2fc268f45b14f305 (patch)
treec02e839c5527f3de2112c47ce51abee32941ff8e /common/stdafx.h
parent66635b5e97e6e93cb805154681aa1ac56041bf03 (diff)
downloadscummvm-rg350-efc32d9dbc8408ed2f59da8c2fc268f45b14f305.tar.gz
scummvm-rg350-efc32d9dbc8408ed2f59da8c2fc268f45b14f305.tar.bz2
scummvm-rg350-efc32d9dbc8408ed2f59da8c2fc268f45b14f305.zip
disable empty statement warnings for vc
svn-id: r9310
Diffstat (limited to 'common/stdafx.h')
-rw-r--r--common/stdafx.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/common/stdafx.h b/common/stdafx.h
index 0ee78c127a..2f17591dd4 100644
--- a/common/stdafx.h
+++ b/common/stdafx.h
@@ -38,6 +38,7 @@
#ifdef _MSC_VER
# pragma warning( disable : 4068 ) // turn off "unknown pragma" warning
# pragma warning( disable : 4244 ) // turn off "conversion from 'type1' to 'type2', possible loss of data" warning
+# pragma warning( disable : 4390 ) // turn off "empty controlled statement found" warning
#endif
#if _MSC_VER > 1000