astyle formatting

[ci skip]
This commit is contained in:
Daniel Marjamäki 2018-08-18 15:45:50 +02:00
parent 5ebfa035aa
commit 212af76367
1 changed files with 1 additions and 1 deletions

View File

@ -219,7 +219,7 @@ static void followVariableExpressionError(const Token *tok1, const Token *tok2,
if (!tok2)
return;
ErrorPathItem item = std::make_pair(tok2, "'" + tok1->str() + "' is assigned value '" + tok2->expressionString() + "' here.");
if(std::find(errors->begin(), errors->end(), item) != errors->end())
if (std::find(errors->begin(), errors->end(), item) != errors->end())
return;
errors->push_back(item);
}