another dart code generator snapshot

PiperOrigin-RevId: 494618679
pull/13171/head
Eric Salo 2 years ago committed by Copybara-Service
parent 4a581e5cd0
commit e6e48dfea3
  1. 2
      upb/mini_table/extension_registry.h
  2. 8
      upb/wire/decode.h

@ -76,7 +76,7 @@ typedef struct upb_ExtensionRegistry upb_ExtensionRegistry;
// Creates a upb_ExtensionRegistry in the given arena.
// The arena must outlive any use of the extreg.
upb_ExtensionRegistry* upb_ExtensionRegistry_New(upb_Arena* arena);
UPB_API upb_ExtensionRegistry* upb_ExtensionRegistry_New(upb_Arena* arena);
// Adds the given extension info for the array |e| of size |count| into the
// registry. If there are any errors, the entire array is backed out.

@ -80,10 +80,10 @@ typedef enum {
kUpb_DecodeStatus_MissingRequired = 5,
} upb_DecodeStatus;
upb_DecodeStatus upb_Decode(const char* buf, size_t size, upb_Message* msg,
const upb_MiniTable* l,
const upb_ExtensionRegistry* extreg, int options,
upb_Arena* arena);
UPB_API upb_DecodeStatus upb_Decode(const char* buf, size_t size,
upb_Message* msg, const upb_MiniTable* l,
const upb_ExtensionRegistry* extreg,
int options, upb_Arena* arena);
#ifdef __cplusplus
} /* extern "C" */

Loading…
Cancel
Save