Merge pull request #8718 from georgthegreat/patch-1

Fix -Wunused-parameter introduced in 3.17.3
pull/8709/head
Matt Fowles Kulukundis 4 years ago committed by GitHub
commit 5ccbe55f35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/google/protobuf/arena.h

@ -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;
}

Loading…
Cancel
Save