Changeset 2667 for code/branches/buildsystem3/src/core
- Timestamp:
- Feb 15, 2009, 12:48:03 AM (16 years ago)
- Location:
- code/branches/buildsystem3/src/core
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/buildsystem3/src/core/Factory.h
r2662 r2667 49 49 #include <map> 50 50 #include <string> 51 #include "util/Integers.h"52 51 53 52 namespace orxonox -
code/branches/buildsystem3/src/core/Identifier.h
r2662 r2667 68 68 #include "Super.h" 69 69 #include "Functor.h" 70 #include "util/Integers.h"71 70 #include "util/Debug.h" 72 71 #include "util/String.h" -
code/branches/buildsystem3/src/core/RootGameState.cc
r2662 r2667 135 135 { 136 136 // Don't catch errors when having a debugger in msvc 137 #if ORXONOX_COMPILER != ORXONOX_COMPILER_MSVC|| defined(NDEBUG)137 #if !defined(ORXONOX_COMPILER_MSVC) || defined(NDEBUG) 138 138 try 139 139 { … … 158 158 159 159 this->deactivate(); 160 #if ORXONOX_COMPILER != ORXONOX_COMPILER_MSVC|| defined(NDEBUG)160 #if !defined(ORXONOX_COMPILER_MSVC) || defined(NDEBUG) 161 161 } 162 162 // Note: These are all unhandled exceptions that should not have made its way here!
Note: See TracChangeset
for help on using the changeset viewer.