X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Ftypesafe_cb%2Ftest%2Fcompile_ok-typesafe_cb-vars.c;h=1cb1057d823c954b25e9206bdc7b28781e293d3e;hp=ce0700bcf9b896bd6f92ecc7d3f0e54912499af2;hb=ad2ce76c10f808283ea7cf25cd8e76a15710c4f3;hpb=894dd68a8c899ca7b5028334804fa1638b583908 diff --git a/ccan/typesafe_cb/test/compile_ok-typesafe_cb-vars.c b/ccan/typesafe_cb/test/compile_ok-typesafe_cb-vars.c index ce0700bc..1cb1057d 100644 --- a/ccan/typesafe_cb/test/compile_ok-typesafe_cb-vars.c +++ b/ccan/typesafe_cb/test/compile_ok-typesafe_cb-vars.c @@ -5,43 +5,54 @@ static void _register_callback(void (*cb)(void *arg), void *arg) { + (void)cb; + (void)arg; } #define register_callback(cb, arg) \ - _register_callback(typesafe_cb(void, (cb), (arg)), (arg)) + _register_callback(typesafe_cb(void, void *, (cb), (arg)), (arg)) static void _register_callback_pre(void (*cb)(int x, void *arg), void *arg) { + (void)cb; + (void)arg; } #define register_callback_pre(cb, arg) \ - _register_callback_pre(typesafe_cb_preargs(void, (cb), (arg), int), (arg)) + _register_callback_pre(typesafe_cb_preargs(void, void *, (cb), (arg), int), (arg)) static void _register_callback_post(void (*cb)(void *arg, int x), void *arg) { + (void)cb; + (void)arg; } #define register_callback_post(cb, arg) \ - _register_callback_post(typesafe_cb_postargs(void, (cb), (arg), int), (arg)) + _register_callback_post(typesafe_cb_postargs(void, void *, (cb), (arg), int), (arg)) struct undefined; -static void my_callback(const struct undefined *undef) +static void my_callback(struct undefined *undef) { + (void)undef; } static void my_callback_pre(int x, struct undefined *undef) { + (void)x; + (void)undef; } static void my_callback_post(struct undefined *undef, int x) { + (void)x; + (void)undef; } -int main(int argc, char *argv[]) +int main(void) { struct undefined *handle = NULL; - void (*cb)(const struct undefined *undef) = my_callback; + void (*cb)(struct undefined *undef) = my_callback; void (*pre)(int x, struct undefined *undef) = my_callback_pre; void (*post)(struct undefined *undef, int x) = my_callback_post;