Adds funny casting to avoid pedantic ISO C warning
This commit is contained in:
parent
fd3a625249
commit
3e43c30bcb
12
src/event.c
12
src/event.c
|
@ -22,25 +22,27 @@
|
|||
|
||||
static LinkedList *callbacks = NULL;
|
||||
|
||||
void
|
||||
void
|
||||
event_register_listener(EventCallback cb)
|
||||
{
|
||||
linkedlist_append(&callbacks, cb);
|
||||
// Cast a pointer to a pointer to avoid -wpedantic iso warning
|
||||
linkedlist_append(&callbacks, *(void**)(&cb));
|
||||
}
|
||||
|
||||
void
|
||||
void
|
||||
event_clear_listeners(void)
|
||||
{
|
||||
while (callbacks)
|
||||
linkedlist_pop(&callbacks);
|
||||
}
|
||||
|
||||
void
|
||||
void
|
||||
event_trigger(Event *event)
|
||||
{
|
||||
LinkedList *cbs = callbacks;
|
||||
while (cbs) {
|
||||
((EventCallback) cbs->data)(event);
|
||||
// Reverse the cast from the register (-pedantic ISO warning)
|
||||
(*(EventCallback*)(&cbs->data))(event);
|
||||
cbs = cbs->next;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue