diff options
author | drivehappy <drivehappy@gmail.com> | 2017-09-13 16:10:35 -0700 |
---|---|---|
committer | drivehappy <drivehappy@gmail.com> | 2017-09-14 10:14:57 -0700 |
commit | e3be1febf227647ec8b54f939b07a43d60450e91 (patch) | |
tree | 5253cfd0f065598448918b8e88a0f267dc34395b | |
parent | 3d78561402446f2c213efcda7ed1153a529c16d1 (diff) |
Clang warning cleanup for unused parameter.
-rw-r--r-- | src/google/protobuf/arena.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/google/protobuf/arena.h b/src/google/protobuf/arena.h index f8a94705..78e8d902 100644 --- a/src/google/protobuf/arena.h +++ b/src/google/protobuf/arena.h @@ -853,7 +853,7 @@ class LIBPROTOBUF_EXPORT Arena { template <typename T> GOOGLE_ATTRIBUTE_ALWAYS_INLINE static ::google::protobuf::Arena* GetArenaInternal( - const T* value, google::protobuf::internal::false_type) { + const T* /* value */, google::protobuf::internal::false_type) { return NULL; } |