fix return type
This commit is contained in:
parent
12ba0133dd
commit
3e30403745
1 changed files with 2 additions and 2 deletions
|
@ -484,10 +484,10 @@ MapDataObject* readMapDataObject(CodedInputStream* input, MapTreeBounds* tree, S
|
|||
break;
|
||||
default: {
|
||||
if (WireFormatLite::GetTagWireType(t) == WireFormatLite::WIRETYPE_END_GROUP) {
|
||||
return false;
|
||||
return NULL;
|
||||
}
|
||||
if (!skipUnknownFields(input, t)) {
|
||||
return false;
|
||||
return NULL;
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue