You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for (const Variable* var : symbolDatabase->variableList()) {
2915
2915
if (!var || var->isReference() || var->isPointer() ||
2916
-
(!var->type() && !var->isStlType()) || // bailout if var is of standard type, if it is a pointer or non-const
2916
+
(!var->type() && !var->isStlType() && !(var->valueType() && var->valueType()->container)) || // bailout if var is of standard type, if it is a pointer or non-const
0 commit comments