Changeset 7553 for code/branches/ois_update
- Timestamp:
- Oct 18, 2010, 11:20:32 PM (14 years ago)
- Location:
- code/branches/ois_update/src/libraries
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/ois_update/src/libraries/core/Super.h
r7532 r7553 74 74 #include "CorePrereqs.h" 75 75 76 #include <boost/preprocessor/cat.hpp>77 #include <boost/preprocessor/expand.hpp>78 79 76 #include "util/Debug.h" 80 77 #include "Event.h" … … 573 570 friend struct SuperFunctionCondition; 574 571 575 class BOOST_PP_CAT(BOOST_PP_EXPAND(check), __Test) {};576 struct BOOST_PP_CAT(BOOST_PP_EXPAND(check), __Test) {};577 578 572 // Creates the super-function-callers by calling the first SuperFunctionCondition check 579 573 // This get's called within the initialization of an Identifier 580 574 virtual void createSuperFunctionCaller() const 581 575 { 582 SuperFunctionCondition<0, T, 0, 0>::check();576 //SuperFunctionCondition<0, T, 0, 0>::check(); 583 577 } 584 578 -
code/branches/ois_update/src/libraries/util/Math.cc
r7532 r7553 40 40 // Do not remove this include, it avoids linker errors. 41 41 #include "mbool.h" 42 43 #ifdef ORXONOX_ARCH_6444 class IsArch64 {};45 struct IsArch64 {};46 #else47 class IsArch32 {};48 struct IsArch32 {};49 #endif50 42 51 43 namespace orxonox
Note: See TracChangeset
for help on using the changeset viewer.