Removes ignored const from return type (#2915)

See https://github.com/google/protobuf/issues/2425
This commit is contained in:
Juan David Dominguez 2017-03-29 11:39:29 -07:00 committed by Feng Xiao
parent 258406b88f
commit 4a0dd03e52

View File

@ -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: