Browse Source

Removed unneccessary comments

Samuel W. Flint 8 năm trước cách đây
mục cha
commit
633e7bb11d
1 tập tin đã thay đổi với 0 bổ sung2 xóa
  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;
   }