Replaced C++11 auto keyword

This commit is contained in:
Daniel Marjamäki 2016-04-23 09:18:28 +02:00
parent ee2be81fae
commit 0635ceb42a
1 changed files with 1 additions and 1 deletions

View File

@ -2419,7 +2419,7 @@ void SymbolDatabase::printOut(const char *title) const
std::cout << "int";
std::cout << std::endl;
std::cout << " enumClass: " << scope->enumClass << std::endl;
for (const auto & enumerator : scope->enumeratorList) {
for (const Enumerator & enumerator : scope->enumeratorList) {
std::cout << " Enumerator: " << enumerator.name->str() << " = ";
if (enumerator.value_known) {
std::cout << enumerator.value;