Fix newly appeared -Wunused-parameter (#8587)

This is #8584 applied to 3.17.x
diff --git a/src/google/protobuf/arena.h b/src/google/protobuf/arena.h
index f84e505..e5d79d1 100644
--- a/src/google/protobuf/arena.h
+++ b/src/google/protobuf/arena.h
@@ -709,7 +709,7 @@
   }
   template <typename T>
   PROTOBUF_ALWAYS_INLINE static Arena* GetOwningArenaInternal(
-      const T* value, std::false_type) {
+      const T* /* value */, std::false_type) {
     return nullptr;
   }