[Scummvm-cvs-logs] SF.net SVN: scummvm:[49107] scummvm/trunk/tools/create_msvc/create_msvc.cpp
thebluegr at users.sourceforge.net
thebluegr at users.sourceforge.net
Wed May 19 19:19:52 CEST 2010
Revision: 49107
http://scummvm.svn.sourceforge.net/scummvm/?rev=49107&view=rev
Author: thebluegr
Date: 2010-05-19 17:19:51 +0000 (Wed, 19 May 2010)
Log Message:
-----------
Disabled probably false positive warning 4121 (alignment of a member was sensitive to packing) in mohawk
Modified Paths:
--------------
scummvm/trunk/tools/create_msvc/create_msvc.cpp
Modified: scummvm/trunk/tools/create_msvc/create_msvc.cpp
===================================================================
--- scummvm/trunk/tools/create_msvc/create_msvc.cpp 2010-05-19 17:18:20 UTC (rev 49106)
+++ scummvm/trunk/tools/create_msvc/create_msvc.cpp 2010-05-19 17:19:51 UTC (rev 49107)
@@ -511,6 +511,8 @@
// 4103 (alignment changed after including header, may be due to missing #pragma pack(pop))
// used by pack-start / pack-end
//
+ // 4121 (alignment of a member was sensitive to packing)
+ //
// 4127 (conditional expression is constant)
// used in a lot of engines
//
@@ -564,6 +566,7 @@
projectWarnings["lure"] = "4189;4355";
projectWarnings["kyra"] = "4355";
projectWarnings["m4"] = "4355";
+ projectWarnings["mohawk"] = "4121";
ProjectProvider *provider = NULL;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Scummvm-git-logs
mailing list