Changeset 2797 for code/trunk
- Timestamp:
- Mar 17, 2009, 10:53:53 PM (16 years ago)
- Location:
- code/trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/OrxonoxConfig.h.in
r2761 r2797 85 85 /* See if we can use __forceinline or if we need to use __inline instead */ 86 86 #cmakedefine HAVE_FORCEINLINE 87 #ifdef HAVE_FORCEINLINE 88 # define FORCEINLINE __forceinline 89 #else 90 # define FORCEINLINE __inline 87 #ifndef FORCEINLINE 88 # ifdef HAVE_FORCEINLINE 89 # define FORCEINLINE __forceinline 90 # else 91 # define FORCEINLINE __inline 92 # endif 91 93 #endif 92 94 -
code/trunk/src/orxonox/gamestates/GSGraphics.h
r2756 r2797 32 32 #include "OrxonoxPrereqs.h" 33 33 #include <OgrePrerequisites.h> 34 #define NOMINMAX // required to stop windows.h screwing up std::min definition 34 #ifndef NOMINMAX 35 # define NOMINMAX // required to stop windows.h screwing up std::min definition 36 #endif 35 37 #include <OgreWindowEventUtilities.h> 36 38 #include "core/GameState.h" -
code/trunk/src/orxonox/gamestates/GSRoot.cc
r2759 r2797 49 49 # define WIN32_LEAN_AND_MEAN 50 50 # endif 51 # define NOMINMAX // required to stop windows.h screwing up std::min definition 51 # ifndef NOMINMAX 52 # define NOMINMAX // required to stop windows.h screwing up std::min definition 53 # endif 52 54 # include "windows.h" 53 55 #endif -
code/trunk/src/orxonox/pch/havepch/OrxonoxStableHeaders.h
r2756 r2797 45 45 # define WIN32_LEAN_AND_MEAN 46 46 #endif 47 #define NOMINMAX // required to stop windows.h screwing up std::min definition 47 #ifndef NOMINMAX 48 # define NOMINMAX // required to stop windows.h screwing up std::min definition 49 #endif 48 50 #include <Ogre.h> 49 51 #include <CEGUI.h>
Note: See TracChangeset
for help on using the changeset viewer.