소스 검색

Removed unneccessary comments

Samuel W. Flint 7 년 전
부모
커밋
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;
   }