Running astyle [ci skip].

This commit is contained in:
orbitcowboy 2019-03-11 15:32:30 +01:00
parent f449e75214
commit 0721c9f7f0
1 changed files with 2 additions and 1 deletions

View File

@ -228,7 +228,8 @@ void CheckBufferOverrun::arrayIndex()
}
}
static std::string arrayIndexMessage(const Token *tok, const Variable *var, const ValueFlow::Value *index) {
static std::string arrayIndexMessage(const Token *tok, const Variable *var, const ValueFlow::Value *index)
{
std::string array = tok->astOperand1()->expressionString();
for (const Dimension &dim : var->dimensions())
array += "[" + MathLib::toString(dim.num) + "]";