Renamed _blankTypes

This commit is contained in:
Daniel Marjamäki 2018-06-16 20:33:07 +02:00
parent 56126d6e2d
commit 15f7c26706
2 changed files with 3 additions and 3 deletions

View File

@ -819,8 +819,8 @@ void SymbolDatabase::createSymbolDatabaseNeedInitialization()
Scope *scope = &(*it); Scope *scope = &(*it);
if (!scope->definedType) { if (!scope->definedType) {
_blankTypes.push_back(Type()); mBlankTypes.push_back(Type());
scope->definedType = &_blankTypes.back(); scope->definedType = &mBlankTypes.back();
} }
if (scope->isClassOrStruct() && scope->definedType->needInitialization == Type::Unknown) { if (scope->isClassOrStruct() && scope->definedType->needInitialization == Type::Unknown) {

View File

@ -1246,7 +1246,7 @@ private:
std::vector<const Variable *> mVariableList; std::vector<const Variable *> mVariableList;
/** list for missing types */ /** list for missing types */
std::list<Type> _blankTypes; std::list<Type> mBlankTypes;
bool cpp; bool cpp;
ValueType::Sign defaultSignedness; ValueType::Sign defaultSignedness;