symbol database: add missing endl in debug dump

This commit is contained in:
Robert Reif 2012-01-22 22:32:53 -05:00
parent f81557da50
commit e39b70c1be
1 changed files with 2 additions and 1 deletions

View File

@ -1395,8 +1395,9 @@ void SymbolDatabase::printOut(const char *title) const
std::cout << " nestedIn: " << scope->nestedIn;
if (scope->nestedIn) {
std::cout << " " << scope->nestedIn->type << " "
<< scope->nestedIn->className << std::endl;
<< scope->nestedIn->className;
}
std::cout << std::endl;
std::cout << " nestedList[" << scope->nestedList.size() << "] = (";