Browse Source

warning fix unused-parameter (#2585)

pull/2560/head
Gilles Vollant 5 years ago
committed by GitHub
parent
commit
70b6225e5d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      cpp/src/phonenumbers/base/memory/scoped_ptr.h

+ 1
- 1
cpp/src/phonenumbers/base/memory/scoped_ptr.h View File

@ -33,7 +33,7 @@ namespace phonenumbers {
template <class T>
struct DefaultDeleter {
DefaultDeleter() {}
template <typename U> DefaultDeleter(const DefaultDeleter<U>& other) {
template <typename U> DefaultDeleter(const DefaultDeleter<U>& /*other*/) {
// IMPLEMENTATION NOTE: C++11 20.7.1.1.2p2 only provides this constructor
// if U* is implicitly convertible to T* and U is not an array type.
//


Loading…
Cancel
Save