Fix warning from missing (void) on a 0-arg function.

PiperOrigin-RevId: 594080778
pull/15209/head
Protobuf Team Bot 1 year ago committed by Copybara-Service
parent e4057a4014
commit 19c800c4f8
  1. 2
      upb_generator/upbdev.c

@ -112,6 +112,6 @@ void upbdev_ProcessStdout(const char* buf, size_t size, upb_Arena* arena,
}
}
upb_Arena* upbdev_Arena_New() { return upb_Arena_New(); }
upb_Arena* upbdev_Arena_New(void) { return upb_Arena_New(); }
void upbdev_Status_Clear(upb_Status* status) { upb_Status_Clear(status); }

Loading…
Cancel
Save