aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@qt.io>2019-07-23 16:30:37 +0200
committerhjk <hjk@qt.io>2019-07-23 14:32:09 +0000
commitcb34f54aa0cb48dc7bb82974b317342bd87eb28c (patch)
treee755346c6775ffe219aa5432cf9b6432185f6f2f /tests/manual
parentb0e52f7ff634e45f325de0e54047acecd73855fa (diff)
Tests: Fix compile
Change-Id: Ie6e1230177cc11f4f3ab545f10c2c144ef316d3a Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'tests/manual')
-rw-r--r--tests/manual/debugger/simple/simple_test_app.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/manual/debugger/simple/simple_test_app.cpp b/tests/manual/debugger/simple/simple_test_app.cpp
index 1902dfe27c..cda17dc97d 100644
--- a/tests/manual/debugger/simple/simple_test_app.cpp
+++ b/tests/manual/debugger/simple/simple_test_app.cpp
@@ -423,7 +423,7 @@ class XX : virtual public Foo { public: XX() { } };
class Y : virtual public Foo { public: Y() { } };
-class D : public X, public Y { int diamond; D(){Q_UNUSED(diamond);} }
+class D : public X, public Y { int diamond; D(){Q_UNUSED(diamond)} };
namespace peekandpoke {