mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 17:14:41 +00:00
[ATL] CComCriticalSection destructor should not be virtual
Fixes GCC 13 build of shdocvw
This commit is contained in:
parent
fd265bd7ac
commit
398486f5f6
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ public:
|
|||
memset(&m_sec, 0, sizeof(CRITICAL_SECTION));
|
||||
}
|
||||
|
||||
virtual ~CComCriticalSection()
|
||||
~CComCriticalSection()
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue