Skip to content

Commit

Permalink
Fix warning from missing (void) on a 0-arg function.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 594045181
  • Loading branch information
protobuf-github-bot authored and copybara-github committed Dec 27, 2023
1 parent 2f7b283 commit f542339
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion upb_generator/upbdev.c
Original file line number Diff line number Diff line change
Expand Up @@ -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); }

0 comments on commit f542339

Please sign in to comment.