aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/debugger
diff options
context:
space:
mode:
authorVolker Hilsheimer <volker.hilsheimer@qt.io>2021-04-11 11:12:51 +0200
committerVolker Hilsheimer <volker.hilsheimer@qt.io>2021-04-11 22:08:30 +0200
commit0d28805cc7790511b9414a900be57f3b2d8d63a8 (patch)
tree7024857bab292b347a48d77f1831bf37e5e23f28 /tests/auto/qml/debugger
parent2181ef9d29c71273accab710a68907c5d42771db (diff)
Mark overrides in tests to silence compiler warnings
Pick-to: 6.1 Change-Id: Ieed929dcd7b550a1dc365d34b6f20f2f0e2d057f Reviewed-by: Shawn Rutledge <shawn.rutledge@qt.io>
Diffstat (limited to 'tests/auto/qml/debugger')
-rw-r--r--tests/auto/qml/debugger/qv4debugger/tst_qv4debugger.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qml/debugger/qv4debugger/tst_qv4debugger.cpp b/tests/auto/qml/debugger/qv4debugger/tst_qv4debugger.cpp
index 7bf16dd9b3..8419b6a31c 100644
--- a/tests/auto/qml/debugger/qv4debugger/tst_qv4debugger.cpp
+++ b/tests/auto/qml/debugger/qv4debugger/tst_qv4debugger.cpp
@@ -101,7 +101,7 @@ public:
ExceptionCollectJob(QV4DataCollector *collector) :
CollectJob(collector), exception(-1) {}
- void run() {
+ void run() override {
QV4::Scope scope(collector->engine());
QV4::ScopedValue v(scope, *collector->engine()->exceptionValue);
exception = collector->addValueRef(v);