Merge pull request #875 from tkarls/return_correct_bool_type_from_map

Changed return type from int32 to bool in function returning a bool
This commit is contained in:
Feng Xiao 2015-10-13 16:52:50 -07:00
commit 8894d1febf

View file

@ -155,7 +155,7 @@ class LIBPROTOBUF_EXPORT MapKey {
"MapKey::GetUInt32Value");
return val_.uint32_value_;
}
int32 GetBoolValue() const {
bool GetBoolValue() const {
TYPE_CHECK(FieldDescriptor::CPPTYPE_BOOL,
"MapKey::GetBoolValue");
return val_.bool_value_;