Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 10365


Ignore:
Timestamp:
Apr 14, 2015, 10:29:05 PM (9 years ago)
Author:
landauf
Message:

fixed tests, added more output

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/core7/src/libraries/core/class/IdentifierManager.cc

    r10364 r10365  
    148148
    149149        // only check class hierarchy in dev mode because it's an expensive operation and it requires a developer to fix detected problems anyway.
    150         if (Core::getInstance().inDevMode())
     150        if (!Core::exists() || Core::getInstance().inDevMode())
    151151            this->verifyClassHierarchy();
    152152
     
    182182            delete temp;
    183183        }
     184        orxout(internal_info) << "Class hierarchy matches RTTI" << endl;
    184185
    185186        size_t numberOfObjects = temporaryContext.getObjectList<Listable>()->size();
Note: See TracChangeset for help on using the changeset viewer.