aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/debugger
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2016-07-28 10:21:06 +0200
committerUlf Hermann <ulf.hermann@qt.io>2016-07-28 15:09:43 +0000
commit91deafdcc8e4b743e2d27a1793a2b1b2ba506cd7 (patch)
treefb1409be1deec84adb6dee9ac66e4b616e9530b6 /src/qml/debugger
parenta7c7b26653c76e6c699a7f4e81f7ffec60dde0be (diff)
Remove some unused members on -no-qml-debug
It's debatable if the uglification is worth the overhead of a few pointers. Change-Id: I63b55b2043b8752a94d4b862c3892915135a72b7 Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'src/qml/debugger')
-rw-r--r--src/qml/debugger/qqmlprofiler_p.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/qml/debugger/qqmlprofiler_p.h b/src/qml/debugger/qqmlprofiler_p.h
index 483252df6d..6643695d11 100644
--- a/src/qml/debugger/qqmlprofiler_p.h
+++ b/src/qml/debugger/qqmlprofiler_p.h
@@ -73,23 +73,23 @@ struct QQmlProfiler {};
struct QQmlBindingProfiler
{
- QQmlBindingProfiler(QQmlProfiler *, QQmlBinding *, QV4::FunctionObject *) {}
+ QQmlBindingProfiler(quintptr, QQmlBinding *, QV4::FunctionObject *) {}
};
struct QQmlHandlingSignalProfiler
{
- QQmlHandlingSignalProfiler(QQmlProfiler *, QQmlBoundSignalExpression *) {}
+ QQmlHandlingSignalProfiler(quintptr, QQmlBoundSignalExpression *) {}
};
struct QQmlCompilingProfiler
{
- QQmlCompilingProfiler(QQmlProfiler *, QQmlDataBlob *) {}
+ QQmlCompilingProfiler(quintptr, QQmlDataBlob *) {}
};
struct QQmlVmeProfiler {
QQmlVmeProfiler() {}
- void init(QQmlProfiler *, int) {}
+ void init(quintptr, int) {}
const QV4::CompiledData::Object *pop() { return nullptr; }
void push(const QV4::CompiledData::Object *) {}