nit: removed stray semicolon in checkother.cpp (#5053)
This fixed nit removes a compiler warning.
This commit is contained in:
parent
2a0143c8e1
commit
2abd9dcf79
|
@ -868,7 +868,7 @@ static bool isSimpleExpr(const Token* tok, const Variable* var, const Settings*
|
||||||
needsCheck = true;
|
needsCheck = true;
|
||||||
}
|
}
|
||||||
return (needsCheck && !isExpressionChanged(tok, tok->astParent(), var->scope()->bodyEnd, settings, true));
|
return (needsCheck && !isExpressionChanged(tok, tok->astParent(), var->scope()->bodyEnd, settings, true));
|
||||||
};
|
}
|
||||||
|
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
// Check scope of variables..
|
// Check scope of variables..
|
||||||
|
|
Loading…
Reference in New Issue