diff options
author | Alessandro Portale <aportale@trolltech.com> | 2009-07-13 17:35:17 +0200 |
---|---|---|
committer | Alessandro Portale <aportale@trolltech.com> | 2009-07-13 17:35:17 +0200 |
commit | d3f9757916d5ba10eac63ef6c42611924999c3b0 (patch) | |
tree | d3da900526161354a6c1ea76f9e66247897977d3 /src/shared/cplusplus/CheckDeclaration.cpp | |
parent | f9ed6f18bce732a0b440b40cb1cb930d779660ff (diff) | |
download | qt-creator-d3f9757916d5ba10eac63ef6c42611924999c3b0.tar.gz |
Removing some unused semicolons after Q_UNUSED
There were both variants, with and without extra semicolon.
Diffstat (limited to 'src/shared/cplusplus/CheckDeclaration.cpp')
-rw-r--r-- | src/shared/cplusplus/CheckDeclaration.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/cplusplus/CheckDeclaration.cpp b/src/shared/cplusplus/CheckDeclaration.cpp index 1bd8086cdb..83fbc1dd0e 100644 --- a/src/shared/cplusplus/CheckDeclaration.cpp +++ b/src/shared/cplusplus/CheckDeclaration.cpp @@ -227,7 +227,7 @@ bool CheckDeclaration::visit(SimpleDeclarationAST *ast) if (it->declarator && it->declarator->initializer) { FullySpecifiedType initTy = semantic()->check(it->declarator->initializer, _scope); - Q_UNUSED(initTy); + Q_UNUSED(initTy) } *decl_it = new (translationUnit()->memoryPool()) List<Declaration *>(); |