CWindow.h: fix build error with gcc

In file included from CWindow.cpp:19:0:
CWindow.h:288:33: error: invalid pure specifier (only '= 0' is allowed) before ' token
  virtual DWORD ThreadFunc()=NULL;
                                 ^
This commit is contained in:
rofl0r 2024-12-06 01:46:14 +00:00
parent dfcd482933
commit 203d665445
1 changed files with 1 additions and 1 deletions

View File

@ -285,7 +285,7 @@ public:
protected:
DWORD threadID;
virtual DWORD ThreadFunc()=NULL;
virtual DWORD ThreadFunc()=0;
};
class TOOLSCLASS : public THREADCLASS