[Scummvm-cvs-logs] SF.net SVN: scummvm:[38844] scummvm/trunk/engines/sci/engine

dhewg at users.sourceforge.net dhewg at users.sourceforge.net
Tue Feb 24 19:21:14 CET 2009


Revision: 38844
          http://scummvm.svn.sourceforge.net/scummvm/?rev=38844&view=rev
Author:   dhewg
Date:     2009-02-24 18:21:12 +0000 (Tue, 24 Feb 2009)

Log Message:
-----------
fix forward declarations to match the actual ones

Modified Paths:
--------------
    scummvm/trunk/engines/sci/engine/kdebug.h
    scummvm/trunk/engines/sci/engine/seg_manager.h
    scummvm/trunk/engines/sci/engine/vm.h

Modified: scummvm/trunk/engines/sci/engine/kdebug.h
===================================================================
--- scummvm/trunk/engines/sci/engine/kdebug.h	2009-02-24 15:40:19 UTC (rev 38843)
+++ scummvm/trunk/engines/sci/engine/kdebug.h	2009-02-24 18:21:12 UTC (rev 38844)
@@ -30,7 +30,7 @@
 
 namespace Sci {
 
-class EngineState;
+struct EngineState;
 
 #define SCIk_DEBUG_MODES 17
 

Modified: scummvm/trunk/engines/sci/engine/seg_manager.h
===================================================================
--- scummvm/trunk/engines/sci/engine/seg_manager.h	2009-02-24 15:40:19 UTC (rev 38843)
+++ scummvm/trunk/engines/sci/engine/seg_manager.h	2009-02-24 18:21:12 UTC (rev 38844)
@@ -30,7 +30,7 @@
 
 namespace Sci {
 
-class IntMapper;	// from intmap.h
+struct IntMapper;	// from intmap.h
 
 // SCRIPT_ID must be 0
 enum idFlag {

Modified: scummvm/trunk/engines/sci/engine/vm.h
===================================================================
--- scummvm/trunk/engines/sci/engine/vm.h	2009-02-24 15:40:19 UTC (rev 38843)
+++ scummvm/trunk/engines/sci/engine/vm.h	2009-02-24 18:21:12 UTC (rev 38844)
@@ -37,7 +37,7 @@
 
 namespace Sci {
 
-class IntMapper;	// from intmap.h
+struct IntMapper;	// from intmap.h
 
 #define VM_STACK_SIZE 0x1000
 /* Number of bytes to be allocated for the stack */


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