Drop unneeded parentheses

Those are a misleading leftover from old code
This commit is contained in:
Dmitry-Me 2017-09-04 22:49:05 +03:00
parent c29f16a306
commit f7ab8c5ebb
1 changed files with 1 additions and 1 deletions

View File

@ -2109,7 +2109,7 @@ void CheckClass::initializerListOrder()
// iterate through all member functions looking for constructors
for (func = scope->functionList.begin(); func != scope->functionList.end(); ++func) {
if ((func->isConstructor()) && func->hasBody()) {
if (func->isConstructor() && func->hasBody()) {
// check for initializer list
const Token *tok = func->arg->link()->next();