Fix compiler error in dynamic_message.cc

pull/8858/head
Adam Cozzette 3 years ago
parent 0773db2124
commit d7320b15ee
  1. 4
      src/google/protobuf/dynamic_message.cc

@ -843,7 +843,9 @@ const Message* DynamicMessageFactory::GetPrototypeNoLock(
type_info->extensions_offset,
type_info->oneof_case_offset,
type_info->size,
type_info->weak_field_map_offset};
type_info->weak_field_map_offset,
nullptr /* inlined_string_indices_ */,
0 /* inlined_string_donated_offset_ */};
type_info->reflection.reset(
new Reflection(type_info->type, schema, type_info->pool, this));

Loading…
Cancel
Save