Ver Fonte

Removed unneccessary comments

Samuel W. Flint há 7 anos atrás
pai
commit
633e7bb11d
1 ficheiros alterados com 0 adições e 2 exclusões
  1. 0 2
      hooks.h

+ 0 - 2
hooks.h

@@ -19,8 +19,6 @@ typedef struct hookFunction HOOKFUNC;
 void runHook(HOOK * hook) {
   LISTEL * head = hook->start;
   while (head != NULL) {
-    /* void *function = head->data; */
-    /* ((void*)function)(); */
     ((HOOKFUNC*)(head->data))->function();
     head = head->next;
   }