aboutsummaryrefslogtreecommitdiff
path: root/common/stdafx.h
diff options
context:
space:
mode:
authorPaweł Kołodziejski2007-01-15 08:21:20 +0000
committerPaweł Kołodziejski2007-01-15 08:21:20 +0000
commit964b95ccf0271fc72080a85328c0bab5f479f90a (patch)
treea9f2b98e1d70cb918a72790a0167361236f5d963 /common/stdafx.h
parent3c537cb3c92e288e83c08b8b5eaed4e2a6241f5e (diff)
downloadscummvm-rg350-964b95ccf0271fc72080a85328c0bab5f479f90a.tar.gz
scummvm-rg350-964b95ccf0271fc72080a85328c0bab5f479f90a.tar.bz2
scummvm-rg350-964b95ccf0271fc72080a85328c0bab5f479f90a.zip
keep warnings off like this ones:
- warning C4610: struct 'Agi::AGIGameDescription' can never be instantiated - user defined constructor required - warning C4510: 'Saga::SAGAGameDescription' : default constructor could not be generated Can someone help me how to fix this ? svn-id: r25088
Diffstat (limited to 'common/stdafx.h')
-rw-r--r--common/stdafx.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/common/stdafx.h b/common/stdafx.h
index 3ae85686a2..38f2eaeb27 100644
--- a/common/stdafx.h
+++ b/common/stdafx.h
@@ -52,6 +52,8 @@
#pragma warning( disable : 4512 ) // turn off "assignment operator could not be generated" warning
#pragma warning( disable : 4351 ) // turn off "new behavior ... will be default initialized" warning
#pragma warning( disable : 4505 ) // turn off "unreferenced local function has been removed"
+#pragma warning( disable : 4510 ) // turn off "default constructor could not be generated"
+#pragma warning( disable : 4610 ) // turn off "struct can never be instantiated - user defined constructor required"
// FIXME: 4702 & 4706 - may be enabled
#pragma warning( disable : 4702 ) // turn off "unreachable code" warning