Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Feb 12, 2008, 9:26:58 PM (17 years ago)
Author:
landauf
Message:

Fixed a small bug in the clean-function of ClassTreeMask (I made it recursively and forgot the recursion-call :D). From what I see now the ClassTreeMask works fine. And yes, I know it's overkill, no one will ever use more than 10% of the features, but I like it. ;)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/core/src/orxonox/Orxonox.cc

    r807 r808  
    925925        std::cout << "Mask 1 ^ Mask 2:\n";
    926926        TestClassTreeMask(test13_10);
    927         test13_10 = test13_10;
    928         TestClassTreeMask(test13_10);
    929927
    930928        std::cout << "8\n";
     
    962960        TestClassTreeMask(test13_11);
    963961        TestClassTreeMask(test13_13);
     962
     963        test13_1 = test13_1;
     964        std::cout << std::endl;
     965        std::cout << "Mask 1 assigned with = operator to itself:\n";
     966        TestClassTreeMask(test13_1);
    964967
    965968        std::cout << "9\n";
Note: See TracChangeset for help on using the changeset viewer.