Fix a param naming issue for upb_Message_InsertMapEntry. Should just be mini_table instead of map_entry_mini_table

PiperOrigin-RevId: 495621671
pull/13171/head
Protobuf Team Bot 2 years ago committed by Copybara-Service
parent d9ee7f5b10
commit 85fcfcb792
  1. 9
      upb/message/accessors.h

@ -554,10 +554,11 @@ UPB_API_INLINE upb_Map* upb_MiniTable_GetMutableMap(
}
// Updates a map entry given an entry message.
upb_MapInsertStatus upb_Message_InsertMapEntry(
upb_Map* map, const upb_MiniTable* map_entry_mini_table,
const upb_MiniTableField* field, upb_Message* map_entry_message,
upb_Arena* arena);
upb_MapInsertStatus upb_Message_InsertMapEntry(upb_Map* map,
const upb_MiniTable* mini_table,
const upb_MiniTableField* field,
upb_Message* map_entry_message,
upb_Arena* arena);
typedef enum {
kUpb_GetExtension_Ok,

Loading…
Cancel
Save