astyle formatting

This commit is contained in:
Daniel Marjamäki 2020-11-28 05:52:35 +01:00
parent 01df6e23ef
commit 484b68c550
3 changed files with 11 additions and 12 deletions

View File

@ -1594,7 +1594,8 @@ bool CheckUnusedVar::isEmptyType(const Type* type)
}
bool CheckUnusedVar::isFunctionWithoutSideEffects(const Function& func, const Token* functionUsageToken,
std::list<const Function*> checkedFuncs) {
std::list<const Function*> checkedFuncs)
{
// no body to analyze
if (!func.hasBody()) {
return false;
@ -1609,8 +1610,7 @@ bool CheckUnusedVar::isFunctionWithoutSideEffects(const Function& func, const To
bool sideEffectReturnFound = false;
for (Token* bodyToken = func.functionScope->bodyStart->next(); bodyToken != func.functionScope->bodyEnd;
bodyToken = bodyToken->next())
{
bodyToken = bodyToken->next()) {
const Variable* bodyVariable = bodyToken->variable();
if (bodyVariable) {
// check variable for side-effects

View File

@ -515,8 +515,7 @@ private:
ASSERT_EQUALS("", errout.str());
}
void cleanFunction()
{
void cleanFunction() {
// unknown function
functionVariableUsage(
"class F {\n"