Skip to content

Commit

Permalink
Removes ignored const from return type
Browse files Browse the repository at this point in the history
  • Loading branch information
Jdavid1001-zz authored and techiejd committed Mar 29, 2017
1 parent 5859932 commit 6c73af1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/google/protobuf/map.h
Expand Up @@ -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:
Expand Down

0 comments on commit 6c73af1

Please sign in to comment.