[Scummvm-cvs-logs] SF.net SVN: scummvm: [26061] scummvm/trunk/common/stdafx.h

sev at users.sourceforge.net sev at users.sourceforge.net
Sat Mar 10 16:00:56 CET 2007


Revision: 26061
          http://scummvm.svn.sourceforge.net/scummvm/?rev=26061&view=rev
Author:   sev
Date:     2007-03-10 07:00:56 -0800 (Sat, 10 Mar 2007)

Log Message:
-----------
Shut useless MSVC8 warning. We use pack-start.h and pack-end.h and it
complained that alignment state changed after #include. I.e. exactly what
we wanted to do.

Modified Paths:
--------------
    scummvm/trunk/common/stdafx.h

Modified: scummvm/trunk/common/stdafx.h
===================================================================
--- scummvm/trunk/common/stdafx.h	2007-03-10 14:59:26 UTC (rev 26060)
+++ scummvm/trunk/common/stdafx.h	2007-03-10 15:00:56 UTC (rev 26061)
@@ -51,6 +51,7 @@
 		#pragma warning( disable : 4355 ) // turn off "base member init" warning
 		#pragma warning( disable : 4390 ) // turn off "empty statement" warning for BS2 code
 		#pragma warning( disable : 4250 ) // turn off "inherits via dominance" warning
+		#pragma	warning( disable : 4103 ) // turn off "alignement changed after including header" warning. We use pack-start.h file
 		#pragma warning( disable : 4121 ) // turn off "alignment of a member was sensitive to packing" warning
 		#pragma warning( disable : 4511 ) // turn off "copy constructor could not be generated" warning
 		#pragma warning( disable : 4512 ) // turn off "assignment operator could not be generated" warning


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