فهرست منبع

Removed unneccessary comments

Samuel W. Flint 8 سال پیش
والد
کامیت
633e7bb11d
1فایلهای تغییر یافته به همراه0 افزوده شده و 2 حذف شده
  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;
   }