Skip to content

Commit

Permalink
Fix newly appeared -Wunused-parameter
Browse files Browse the repository at this point in the history
This is protocolbuffers#8584 applied to 3.17.x
  • Loading branch information
georgthegreat committed May 8, 2021
1 parent e211ad3 commit 84837f9
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 84837f9

Please sign in to comment.