Debugger: Avoid a warning in a manual test

Change-Id: I54b34434384e0decde28a4f7e1decdd51b8871c1
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
hjk
2024-11-15 16:39:54 +01:00
parent 17f864979c
commit 6df814b472

View File

@@ -9,6 +9,7 @@ public:
Something() { Something() {
int i = 0; int i = 0;
++i; ++i;
Q_UNUSED(i)
return; return;
} }
}; };