aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@digia.com>2013-08-19 12:12:33 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-08-19 12:35:15 +0200
commitb4873695ba017469a60ec95b4f8074afbde82a06 (patch)
tree4cd90bb7eee204d752f1b3b8ef12be68c8741eee /src
parent73e42900403186df3ba64b57df4edbeac56e41a8 (diff)
Fix class vs. struct mismatch
Breaks with visual studio otherwise Change-Id: I80ce7ec269ad750e3c9a1dcfef980f57cc395461 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src')
-rw-r--r--src/qml/compiler/qv4isel_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/compiler/qv4isel_p.h b/src/qml/compiler/qv4isel_p.h
index c5b29eee77..2682c17b26 100644
--- a/src/qml/compiler/qv4isel_p.h
+++ b/src/qml/compiler/qv4isel_p.h
@@ -53,7 +53,7 @@
QT_BEGIN_NAMESPACE
namespace QV4 {
-struct ExecutableAllocator;
+class ExecutableAllocator;
struct Function;
}