aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFeng Xiao <xfxyjwf@gmail.com>2017-09-13 16:40:01 -0700
committerGitHub <noreply@github.com>2017-09-13 16:40:01 -0700
commitc0d88ae300af82b4e0717203a4c6baaff05a9c3f (patch)
treea7ee4e39a1970557b1c9ebf8647eb82a514cfbc2
parent471b45e895c1925bf6a1250be9ad9ade161703b8 (diff)
parent7f3ded663bd4a6b68425907b557689831f3f4e01 (diff)
downloadprotobuf-c0d88ae300af82b4e0717203a4c6baaff05a9c3f.tar.gz
protobuf-c0d88ae300af82b4e0717203a4c6baaff05a9c3f.tar.bz2
protobuf-c0d88ae300af82b4e0717203a4c6baaff05a9c3f.zip
Merge pull request #3635 from drivehappy/clang_cleanup
Clang warning cleanup for unused parameter.
-rw-r--r--src/google/protobuf/arena.h2
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;
}