Renamed _blankTypes
This commit is contained in:
parent
56126d6e2d
commit
15f7c26706
|
@ -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) {
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue