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:
parent
dfcd482933
commit
203d665445
|
@ -285,7 +285,7 @@ public:
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
DWORD threadID;
|
DWORD threadID;
|
||||||
virtual DWORD ThreadFunc()=NULL;
|
virtual DWORD ThreadFunc()=0;
|
||||||
};
|
};
|
||||||
|
|
||||||
class TOOLSCLASS : public THREADCLASS
|
class TOOLSCLASS : public THREADCLASS
|
||||||
|
|
Loading…
Reference in New Issue