Changeset 10364 for code/branches/core7/src/libraries/core/class
- Timestamp:
- Apr 14, 2015, 10:11:35 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core7/src/libraries/core/class/IdentifierManager.cc
r10363 r10364 37 37 38 38 #include "util/StringUtils.h" 39 #include "core/Core Includes.h"39 #include "core/Core.h" 40 40 #include "core/config/ConfigValueContainer.h" 41 41 #include "core/XMLPort.h" … … 147 147 } 148 148 149 this->verifyClassHierarchy(); 149 // 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()) 151 this->verifyClassHierarchy(); 150 152 151 153 this->stopCreatingHierarchy();
Note: See TracChangeset
for help on using the changeset viewer.