From 5bca595410d5f91473b4ded90a6ac923e46ea97c Mon Sep 17 00:00:00 2001 From: Nuno Goncalves Date: Sun, 20 Oct 2019 11:58:19 +0200 Subject: silence trivial warnings Signed-off-by: Nuno Goncalves --- src/lib/utils/socket/socket_udp.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/lib/utils/socket/socket_udp.cpp') diff --git a/src/lib/utils/socket/socket_udp.cpp b/src/lib/utils/socket/socket_udp.cpp index 651fe1b0c..6e7cb1f11 100644 --- a/src/lib/utils/socket/socket_udp.cpp +++ b/src/lib/utils/socket/socket_udp.cpp @@ -320,6 +320,9 @@ OS::open_socket_udp(const std::string& hostname, #elif defined(BOTAN_TARGET_OS_HAS_SOCKETS) || defined(BOTAN_TARGET_OS_HAS_WINSOCK2) return std::unique_ptr(new BSD_SocketUDP(hostname, service, timeout)); #else + BOTAN_UNUSED(hostname); + BOTAN_UNUSED(service); + BOTAN_UNUSED(timeout); return std::unique_ptr(); #endif } -- cgit v1.2.3