From 07db469c06197ccd69005f3fe37fa637e165f9b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Thu, 20 Sep 2012 16:49:26 +0200 Subject: [PATCH] cleaned up braces --- lib/checkclass.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/checkclass.cpp b/lib/checkclass.cpp index adc9bb450..1034ba2f9 100644 --- a/lib/checkclass.cpp +++ b/lib/checkclass.cpp @@ -133,9 +133,8 @@ void CheckClass::constructors() // don't know if they can be copied or not.. if (!var->isPointer() && !var->isClass() && (func->type == Function::eCopyConstructor || func->type == Function::eOperatorEqual)) { bool stdtype = false; - for (const Token *type = var->typeStartToken(); type && type->isName(); type = type->next()) { + for (const Token *type = var->typeStartToken(); type && type->isName(); type = type->next()) stdtype |= type->isStandardType(); - } if (!stdtype) continue; }