Changed argument typ to uint32 in set function that sets an uint32 value
This commit is contained in:
parent
49f24afb45
commit
59906e81d8
1 changed files with 1 additions and 1 deletions
|
@ -275,7 +275,7 @@ class LIBPROTOBUF_EXPORT MapValueRef {
|
|||
"MapValueRef::SetInt32Value");
|
||||
*reinterpret_cast<int32*>(data_) = value;
|
||||
}
|
||||
void SetUInt32Value(uint64 value) {
|
||||
void SetUInt32Value(uint32 value) {
|
||||
TYPE_CHECK(FieldDescriptor::CPPTYPE_UINT32,
|
||||
"MapValueRef::SetUInt32Value");
|
||||
*reinterpret_cast<uint32*>(data_) = value;
|
||||
|
|
Loading…
Add table
Reference in a new issue