Changeset 3810 in orxonox.OLD for orxonox/trunk/src/defs
- Timestamp:
- Apr 13, 2005, 10:38:39 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/defs/stdincl.h
r3800 r3810 32 32 /* performance tweaking stuff */ 33 33 #ifdef __unix__ 34 #include < glib-2.0/glib/gmacros.h>35 #define __LIKELY_IF(condition) if( G_LIKELY(condition))36 #define __UNLIKELY_IF(condition) if( G_UNLIKELY(condition))34 #include <linux/compiler.h> 35 #define __LIKELY_IF(condition) if( likely(condition)) 36 #define __UNLIKELY_IF(condition) if( unlikely(condition)) 37 37 #else 38 38 #define __LIKELY_IF(condition) if( condition)
Note: See TracChangeset
for help on using the changeset viewer.