Changeset 1021 for code/trunk/src/orxonox/core/ClassTreeMask.cc
- Timestamp:
- Apr 10, 2008, 5:03:34 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/orxonox/core/ClassTreeMask.cc
r890 r1021 592 592 { 593 593 const Identifier* subclass = it->getClass(); 594 newmask.add(subclass, this->isIncluded(subclass) ||other.isIncluded(subclass), false, false);594 newmask.add(subclass, this->isIncluded(subclass) or other.isIncluded(subclass), false, false); 595 595 } 596 596 … … 599 599 { 600 600 const Identifier* subclass = it->getClass(); 601 newmask.add(subclass, this->isIncluded(subclass) ||other.isIncluded(subclass), false, false);601 newmask.add(subclass, this->isIncluded(subclass) or other.isIncluded(subclass), false, false); 602 602 } 603 603 … … 623 623 { 624 624 const Identifier* subclass = it->getClass(); 625 newmask.add(subclass, this->isIncluded(subclass) &&other.isIncluded(subclass), false, false);625 newmask.add(subclass, this->isIncluded(subclass) and other.isIncluded(subclass), false, false); 626 626 } 627 627 … … 630 630 { 631 631 const Identifier* subclass = it->getClass(); 632 newmask.add(subclass, this->isIncluded(subclass) &&other.isIncluded(subclass), false, false);632 newmask.add(subclass, this->isIncluded(subclass) and other.isIncluded(subclass), false, false); 633 633 } 634 634 … … 737 737 { 738 738 const Identifier* subclass = it->getClass(); 739 newmask.add(subclass, this->isIncluded(subclass) XORother.isIncluded(subclass), false, false);739 newmask.add(subclass, this->isIncluded(subclass) xor other.isIncluded(subclass), false, false); 740 740 } 741 741 … … 744 744 { 745 745 const Identifier* subclass = it->getClass(); 746 newmask.add(subclass, this->isIncluded(subclass) XORother.isIncluded(subclass), false, false);746 newmask.add(subclass, this->isIncluded(subclass) xor other.isIncluded(subclass), false, false); 747 747 } 748 748
Note: See TracChangeset
for help on using the changeset viewer.