aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/outputparser_test.cpp
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2010-09-07 14:34:38 +0200
committerFriedemann Kleint <Friedemann.Kleint@nokia.com>2010-09-07 14:34:38 +0200
commit444e2fd4cedc7b67542b04b889b07e732a03cb63 (patch)
tree6f397532587eddf90d55ed55d2fdc3d573f33cf7 /src/plugins/projectexplorer/outputparser_test.cpp
parent98e37b3b158fc83e11c0db763ac7b68999ba47e2 (diff)
Quieten gcc compiler warnings.
Diffstat (limited to 'src/plugins/projectexplorer/outputparser_test.cpp')
-rw-r--r--src/plugins/projectexplorer/outputparser_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/outputparser_test.cpp b/src/plugins/projectexplorer/outputparser_test.cpp
index ab3b714ec8..bd83237889 100644
--- a/src/plugins/projectexplorer/outputparser_test.cpp
+++ b/src/plugins/projectexplorer/outputparser_test.cpp
@@ -66,7 +66,7 @@ void OutputParserTester::testParsing(const QString &lines,
}
// first disconnect ourselves from the end of the parser chain again
IOutputParser * parser = this;
- while (parser = parser->childParser()) {
+ while ( (parser = parser->childParser()) ) {
if (parser->childParser() == this) {
childParser()->takeOutputParserChain();
break;