Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7532


Ignore:
Timestamp:
Oct 13, 2010, 12:09:04 AM (13 years ago)
Author:
rgrieder
Message:

Adding some compiler errors to test OS X stuff

Location:
code/branches/ois_update/src/libraries
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/branches/ois_update/src/libraries/core/Super.h

    r7401 r7532  
    7474#include "CorePrereqs.h"
    7575
     76#include <boost/preprocessor/cat.hpp>
     77#include <boost/preprocessor/expand.hpp>
     78
    7679#include "util/Debug.h"
    7780#include "Event.h"
     
    570573        friend struct SuperFunctionCondition;
    571574
     575        class BOOST_PP_CAT(BOOST_PP_EXPAND(check), __Test) {};
     576        struct BOOST_PP_CAT(BOOST_PP_EXPAND(check), __Test) {};
     577
    572578        // Creates the super-function-callers by calling the first SuperFunctionCondition check
    573579        // This get's called within the initialization of an Identifier
  • code/branches/ois_update/src/libraries/util/Math.cc

    r7401 r7532  
    4040// Do not remove this include, it avoids linker errors.
    4141#include "mbool.h"
     42
     43#ifdef ORXONOX_ARCH_64
     44class IsArch64 {};
     45struct IsArch64 {};
     46#else
     47class IsArch32 {};
     48struct IsArch32 {};
     49#endif
    4250
    4351namespace orxonox
Note: See TracChangeset for help on using the changeset viewer.