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/proparser | |
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/proparser')
-rw-r--r-- | src/shared/proparser/profileevaluator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/proparser/profileevaluator.cpp b/src/shared/proparser/profileevaluator.cpp index 016633006c..3dcda2a766 100644 --- a/src/shared/proparser/profileevaluator.cpp +++ b/src/shared/proparser/profileevaluator.cpp @@ -686,7 +686,7 @@ void ProFileEvaluator::Private::visitBeginProVariable(ProVariable *variable) void ProFileEvaluator::Private::visitEndProVariable(ProVariable *variable) { - Q_UNUSED(variable); + Q_UNUSED(variable) m_valuemap = m_tempValuemap; m_filevaluemap = m_tempFilevaluemap; m_lastVarName.clear(); |