From 50b6a3cfa6ce699a45d9f71b8466b7375b9a9b07 Mon Sep 17 00:00:00 2001 From: Andrei Pavel Date: Mon, 3 Nov 2025 11:35:49 +0200 Subject: [PATCH] [#3969] Minor unrelated: fix unused parameter warning --- src/bin/netconf/control_socket.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/netconf/control_socket.h b/src/bin/netconf/control_socket.h index d201bf200b..4cb59ded9d 100644 --- a/src/bin/netconf/control_socket.h +++ b/src/bin/netconf/control_socket.h @@ -113,7 +113,7 @@ using ControlSocketBasePtr = std::shared_ptr; /// @throw NotImplemented if no specialization was called. template ControlSocketBasePtr -createControlSocket(CfgControlSocketPtr ctrl_sock) { +createControlSocket(CfgControlSocketPtr /* ctrl_sock */) { isc_throw(NotImplemented, "not specialized createControlSocket"); } -- 2.47.3