aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jit
diff options
context:
space:
mode:
authorErik Verbruggen <erik.verbruggen@digia.com>2014-12-17 13:25:22 +0100
committerErik Verbruggen <erik.verbruggen@theqtcompany.com>2015-01-12 10:56:42 +0100
commitb935023384120f8a9a38600847324b3810d7bee1 (patch)
treedb2c6e7f8e8e0028af9adfd7ee1b701675c64386 /src/qml/jit
parent661172a7cd9e93563e534fad5218b8ab85611223 (diff)
QML 3rdparty: revert unnecessary change.
It is the change to DataLog.h, which in turn forces the other changes in order to match types. Change-Id: Ie17e7efbd6a4d380a3b7383b0fd0243c6f68d0d5 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/qml/jit')
-rw-r--r--src/qml/jit/qv4isel_masm.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/qml/jit/qv4isel_masm.cpp b/src/qml/jit/qv4isel_masm.cpp
index 3894cea0a1..64b65c6092 100644
--- a/src/qml/jit/qv4isel_masm.cpp
+++ b/src/qml/jit/qv4isel_masm.cpp
@@ -69,13 +69,14 @@ inline bool isPregOrConst(IR::Expr *e)
return e->asConst() != 0;
}
-class QIODevicePrintStream: public PrintStream
+class QIODevicePrintStream: public FilePrintStream
{
Q_DISABLE_COPY(QIODevicePrintStream)
public:
explicit QIODevicePrintStream(QIODevice *dest)
- : dest(dest)
+ : FilePrintStream(0)
+ , dest(dest)
, buf(4096, '0')
{
Q_ASSERT(dest);