Changeset 4815 in orxonox.OLD for orxonox/trunk/src/lib/lang
- Timestamp:
- Jul 7, 2005, 3:49:05 PM (19 years ago)
- Location:
- orxonox/trunk/src/lib/lang
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/lang/base_object.cc
r4778 r4815 104 104 { 105 105 // if classID is a derivable object 106 if ( likely(classID & CL_MASK_SUPER_CLASS || classID & CL_MASK_SUBSUPER_CLASS))106 if ( likely(classID & CL_MASK_SUPER_CLASS || classID & CL_MASK_SUBSUPER_CLASS)) 107 107 { 108 108 if( this->classID & classID) 109 109 return true; 110 } 111 // if classID is a LOWLEVEL-class 110 } // if classID is a LOWLEVEL-class 112 111 else 113 112 { 114 if ((this->classID & CL_MASK_LOWLEVEL_CLASS) == classID)113 if( (this->classID & CL_MASK_LOWLEVEL_CLASS) == classID) 115 114 return true; 116 115 } -
orxonox/trunk/src/lib/lang/class_list.cc
r4784 r4815 105 105 tmp->objectList->remove(objectPointer); 106 106 } 107 108 107 tmp = tmp->next; 109 108 }
Note: See TracChangeset
for help on using the changeset viewer.