From 4a0dd03e52e09332c8fd0f8f26a8e0ae9f911182 Mon Sep 17 00:00:00 2001 From: Juan David Dominguez Date: Wed, 29 Mar 2017 11:39:29 -0700 Subject: Removes ignored const from return type (#2915) See https://github.com/google/protobuf/issues/2425 --- src/google/protobuf/map.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/google/protobuf/map.h b/src/google/protobuf/map.h index e6d78b20..88878b58 100644 --- a/src/google/protobuf/map.h +++ b/src/google/protobuf/map.h @@ -678,7 +678,7 @@ class Map { const Key& key() const { return k_; } Key& key() { return k_; } - value_type* const value() const { return v_; } + value_type* value() const { return v_; } value_type*& value() { return v_; } private: -- cgit v1.2.3