From 84837f9209d7274ede5e2f9782c28c666fbacabf Mon Sep 17 00:00:00 2001 From: Yuriy Chernyshov Date: Sat, 8 May 2021 11:18:20 +0300 Subject: [PATCH] Fix newly appeared -Wunused-parameter This is #8584 applied to 3.17.x --- src/google/protobuf/arena.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/google/protobuf/arena.h b/src/google/protobuf/arena.h index f84e505ebb44..e5d79d163f9f 100644 --- a/src/google/protobuf/arena.h +++ b/src/google/protobuf/arena.h @@ -709,7 +709,7 @@ class PROTOBUF_EXPORT PROTOBUF_ALIGNAS(8) Arena final { } template PROTOBUF_ALWAYS_INLINE static Arena* GetOwningArenaInternal( - const T* value, std::false_type) { + const T* /* value */, std::false_type) { return nullptr; }