From cb34f54aa0cb48dc7bb82974b317342bd87eb28c Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Tue, 23 Jul 2019 16:30:37 +0200 Subject: [PATCH] Tests: Fix compile Change-Id: Ie6e1230177cc11f4f3ab545f10c2c144ef316d3a Reviewed-by: hjk --- tests/manual/debugger/simple/simple_test_app.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/manual/debugger/simple/simple_test_app.cpp b/tests/manual/debugger/simple/simple_test_app.cpp index 1902dfe27ce..cda17dc97de 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 {