[ATL] CComCriticalSection destructor should not be virtual

Fixes GCC 13 build of shdocvw
This commit is contained in:
Timo Kreuzer 2024-10-13 13:00:52 +02:00
parent fd265bd7ac
commit 398486f5f6

View file

@ -55,7 +55,7 @@ public:
memset(&m_sec, 0, sizeof(CRITICAL_SECTION)); memset(&m_sec, 0, sizeof(CRITICAL_SECTION));
} }
virtual ~CComCriticalSection() ~CComCriticalSection()
{ {
} }