aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/parser/qqmljsparser.cpp
diff options
context:
space:
mode:
authorErik Verbruggen <erik.verbruggen@me.com>2013-08-09 12:18:29 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-08-09 13:09:28 +0200
commitf21e01ed220d342990e53817570edd28fb61663d (patch)
tree92d4c4a5cd43bb55b3451a8d6b1a5a7c2c17b7df /src/qml/parser/qqmljsparser.cpp
parentfc665d512736e1249480a835e26410a92939e535 (diff)
Fix invalid condition in comparisson.
Thanks to clang (top-of-trunk) pointing out that the unary not operator only applies to the left-hand side of the equality expression. Change-Id: I093b447d55995a4122aeac042a506eb56f8b2442 Reviewed-by: Tobias Hunger <tobias.hunger@digia.com> Reviewed-by: Lars Knoll <lars.knoll@digia.com>
Diffstat (limited to 'src/qml/parser/qqmljsparser.cpp')
-rw-r--r--src/qml/parser/qqmljsparser.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/qml/parser/qqmljsparser.cpp b/src/qml/parser/qqmljsparser.cpp
index 46b5c041d4..07944c5f23 100644
--- a/src/qml/parser/qqmljsparser.cpp
+++ b/src/qml/parser/qqmljsparser.cpp
@@ -50,6 +50,7 @@
#include <string.h>
+
#include "qqmljsparser_p.h"
#include <QtCore/qvarlengtharray.h>