From 019f0bed2df934336f4d4ef74738e5e305619045 Mon Sep 17 00:00:00 2001 From: bneradt Date: Mon, 4 Jan 2021 23:14:37 +0000 Subject: [PATCH] Fix clang compiler complaint about an unused parameter in SNIAction. --- iocore/net/P_SNIActionPerformer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iocore/net/P_SNIActionPerformer.h b/iocore/net/P_SNIActionPerformer.h index 89067ae199f..cd0cd6ec964 100644 --- a/iocore/net/P_SNIActionPerformer.h +++ b/iocore/net/P_SNIActionPerformer.h @@ -261,7 +261,7 @@ class TLSValidProtocols : public ActionItem TLSValidProtocols() : protocol_mask(max_mask) {} TLSValidProtocols(unsigned long protocols) : unset(false), protocol_mask(protocols) {} int - SNIAction(Continuation *cont, const Context &ctx) const override + SNIAction(Continuation *cont, const Context & /* ctx */) const override { if (!unset) { auto ssl_vc = dynamic_cast(cont);