Changeset 3860 in orxonox.OLD for orxonox/trunk/src/defs
- Timestamp:
- Apr 17, 2005, 6:20:02 PM (20 years ago)
- Location:
- orxonox/trunk/src/defs
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/defs/stdincl.h
r3810 r3860 29 29 #include "debug.h" 30 30 31 32 /* performance tweaking stuff */ 33 #ifdef __unix__ 34 #include <linux/compiler.h> 35 #define __LIKELY_IF(condition) if( likely(condition)) 36 #define __UNLIKELY_IF(condition) if( unlikely(condition)) 37 #else 38 #define __LIKELY_IF(condition) if( condition) 39 #define __UNLIKELY_IF(condition) if( condition) 40 #endif 31 #include "compiler.h" 41 32 42 33 #endif /* _STDINCL_H */
Note: See TracChangeset
for help on using the changeset viewer.