Merge pull request #8718 from georgthegreat/patch-1

Fix -Wunused-parameter introduced in 3.17.3
This commit is contained in:
Matt Fowles Kulukundis 2021-06-09 11:00:42 -04:00 committed by GitHub
commit 5ccbe55f35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -442,7 +442,7 @@ class PROTOBUF_EXPORT PROTOBUF_ALIGNAS(8) Arena final {
}
static Arena* GetArenaForAllocationForNonMessageNonArenaConstructible(
const T* p, std::false_type /*has_get_arena*/) {
const T* /* p */, std::false_type /*has_get_arena*/) {
return nullptr;
}