diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-05-24 07:11:00 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-05-24 07:11:00 (GMT) |
commit | 4c975ee19b9671fbf76b546fc8ca2eff5bc69303 (patch) | |
tree | e5e351346ce9aa3e13ed580d4ec0ef5f02a900da /src | |
parent | 034641277fa71825470f1300f6950b97fdfd6098 (diff) | |
download | Qt-4c975ee19b9671fbf76b546fc8ca2eff5bc69303.zip Qt-4c975ee19b9671fbf76b546fc8ca2eff5bc69303.tar.gz Qt-4c975ee19b9671fbf76b546fc8ca2eff5bc69303.tar.bz2 |
Compiler warning
QTBUG-10816
Diffstat (limited to 'src')
-rw-r--r-- | src/declarative/qml/qdeclarativeobjectscriptclass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/declarative/qml/qdeclarativeobjectscriptclass.cpp b/src/declarative/qml/qdeclarativeobjectscriptclass.cpp index 8b64e0e..aca01b2 100644 --- a/src/declarative/qml/qdeclarativeobjectscriptclass.cpp +++ b/src/declarative/qml/qdeclarativeobjectscriptclass.cpp @@ -623,7 +623,7 @@ private: inline void cleanup(); - void *data[4]; + char data[4 * sizeof(void *)]; int type; }; } |