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
if (mSymbolDatabase && simplification == 2U && mSettings.debugwarnings) {
5928
-
printUnknownTypes();
5929
-
5930
-
// the typeStartToken() should come before typeEndToken()
5931
-
for (const Variable *var : mSymbolDatabase->variableList()) {
5932
-
if (!var)
5933
-
continue;
5934
-
5935
-
const Token * typetok = var->typeStartToken();
5936
-
while (typetok && typetok != var->typeEndToken())
5937
-
typetok = typetok->next();
5938
-
5939
-
if (typetok != var->typeEndToken()) {
5940
-
reportError(var->typeStartToken(),
5941
-
Severity::debug,
5942
-
"debug",
5943
-
"Variable::typeStartToken() of variable '" + var->name() + "' is not located before Variable::typeEndToken(). The location of the typeStartToken() is '" + var->typeStartToken()->str() + "' at line " + std::to_string(var->typeStartToken()->linenr()));
0 commit comments