Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Mar 13, 2008, 3:52:29 PM (16 years ago)
Author:
rgrieder
Message:
  • fixed several errors and issues with visual studio under windows:
    • moved tixml into a separate static lib (has to be)
    • updated OrxonoxStableHeaders.h
    • added macro for XOR
    • exported << operators
    • removed TiXMLPrereqs.h, not anymore useful; merged it into XMLIncludes.h
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/orxonox/OrxonoxPlatform.h

    r790 r890  
    251251#endif
    252252
     253
     254// Create a logical xor operator
     255#if ORXONOX_COMPILER == ORXONOX_COMPILER_MSVC
     256#  define XOR ^
     257#elif ORXONOX_COMPILER == ORXONOX_COMPILER_GCC
     258#  define XOR xor
     259#else
     260#  define XOR ^
     261#endif
     262
    253263} /* namespace orxonox */
    254264
Note: See TracChangeset for help on using the changeset viewer.