summaryrefslogtreecommitdiffstats
path: root/src/qdoc/tokenizer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qdoc/tokenizer.cpp')
-rw-r--r--src/qdoc/tokenizer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qdoc/tokenizer.cpp b/src/qdoc/tokenizer.cpp
index 45c33fa7c..af3837c3a 100644
--- a/src/qdoc/tokenizer.cpp
+++ b/src/qdoc/tokenizer.cpp
@@ -735,7 +735,7 @@ bool Tokenizer::isTrue(const QString &condition)
X && Y || Z // the or
(X || Y) && Z // the and
*/
- for (int i = 0; i < (int) condition.length() - 1; i++) {
+ for (int i = 0; i < condition.length() - 1; i++) {
QChar ch = condition[i];
if (ch == QChar('(')) {
parenDepth++;