Skip to content

Commit

Permalink
Fix newly appeared -Wunused-parameter (#8587)
Browse files Browse the repository at this point in the history
This is #8584 applied to 3.17.x
  • Loading branch information
georgthegreat committed May 10, 2021
1 parent 3546d29 commit 90d4f31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/google/protobuf/arena.h
Expand Up @@ -709,7 +709,7 @@ class PROTOBUF_EXPORT PROTOBUF_ALIGNAS(8) Arena final {
}
template <typename T>
PROTOBUF_ALWAYS_INLINE static Arena* GetOwningArenaInternal(
const T* value, std::false_type) {
const T* /* value */, std::false_type) {
return nullptr;
}

Expand Down

0 comments on commit 90d4f31

Please sign in to comment.