Renamed _blankTypes
This commit is contained in:
parent
56126d6e2d
commit
15f7c26706
|
@ -819,8 +819,8 @@ void SymbolDatabase::createSymbolDatabaseNeedInitialization()
|
|||
Scope *scope = &(*it);
|
||||
|
||||
if (!scope->definedType) {
|
||||
_blankTypes.push_back(Type());
|
||||
scope->definedType = &_blankTypes.back();
|
||||
mBlankTypes.push_back(Type());
|
||||
scope->definedType = &mBlankTypes.back();
|
||||
}
|
||||
|
||||
if (scope->isClassOrStruct() && scope->definedType->needInitialization == Type::Unknown) {
|
||||
|
|
|
@ -1246,7 +1246,7 @@ private:
|
|||
std::vector<const Variable *> mVariableList;
|
||||
|
||||
/** list for missing types */
|
||||
std::list<Type> _blankTypes;
|
||||
std::list<Type> mBlankTypes;
|
||||
|
||||
bool cpp;
|
||||
ValueType::Sign defaultSignedness;
|
||||
|
|
Loading…
Reference in New Issue