From 51c0378798b445dd350e162dbe5ce4b9246b4cc6 Mon Sep 17 00:00:00 2001 From: Volker Hilsheimer Date: Fri, 22 Mar 2024 16:45:59 +0100 Subject: [PATCH] Fix warning: remove unused parameter MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Pick-to: 6.6 6.5 Change-Id: I5794e38e1e9871f14c9a8df6483e57c1922dace2 Reviewed-by: Jøger Hansegård Reviewed-by: Artem Dyomin Reviewed-by: Pavel Dubsky (cherry picked from commit 8424a6401469fdfb9fbaad488fdd5fe65050f34a) Reviewed-by: Qt Cherry-pick Bot --- tests/auto/corelib/tools/quniquehandle/tst_quniquehandle.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/auto/corelib/tools/quniquehandle/tst_quniquehandle.cpp b/tests/auto/corelib/tools/quniquehandle/tst_quniquehandle.cpp index 4ec60e166a8..ed46999e737 100644 --- a/tests/auto/corelib/tools/quniquehandle/tst_quniquehandle.cpp +++ b/tests/auto/corelib/tools/quniquehandle/tst_quniquehandle.cpp @@ -248,7 +248,7 @@ private slots: { using Type = int; - static bool close(Type handle) + static bool close(Type) { return true; }