diff options
author | Robert Loehning <robert.loehning@nokia.com> | 2011-10-21 15:23:53 +0200 |
---|---|---|
committer | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2011-10-21 21:17:08 +0200 |
commit | 75719f04ee2c41312c70fee2271796d05ea08c0e (patch) | |
tree | 60aa5e69fb9e3db99700316844ead9cfb0c29c14 /src/shared/proparser/profileevaluator.cpp | |
parent | ec5d07c44409a5d84fcc213c4e2a6d6ab5ec3b45 (diff) | |
download | qt-creator-75719f04ee2c41312c70fee2271796d05ea08c0e.tar.gz |
Removed dead assignments
Change-Id: I1368cb534284016479211160cd8bf3cbc2f738e4
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
Diffstat (limited to 'src/shared/proparser/profileevaluator.cpp')
-rw-r--r-- | src/shared/proparser/profileevaluator.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shared/proparser/profileevaluator.cpp b/src/shared/proparser/profileevaluator.cpp index 8667b79fde..905d4ed051 100644 --- a/src/shared/proparser/profileevaluator.cpp +++ b/src/shared/proparser/profileevaluator.cpp @@ -3006,9 +3006,9 @@ ProFileEvaluator::Private::VisitReturn ProFileEvaluator::Private::evaluateCondit case T_LOAD: { if (m_skipLevel && !m_cumulative) return ReturnFalse; - bool ignore_error = false; + // bool ignore_error = false; if (args.count() == 2) { - ignore_error = isTrue(args.at(1), m_tmp2); + // ignore_error = isTrue(args.at(1), m_tmp2); } else if (args.count() != 1) { evalError(fL1S("load(feature) requires one or two arguments.")); return ReturnFalse; |