Skip to content

Commit 398486f

Browse files
committed
[ATL] CComCriticalSection destructor should not be virtual
Fixes GCC 13 build of shdocvw
1 parent fd265bd commit 398486f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk/lib/atl/atlcore.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class CComCriticalSection
5555
memset(&m_sec, 0, sizeof(CRITICAL_SECTION));
5656
}
5757

58-
virtual ~CComCriticalSection()
58+
~CComCriticalSection()
5959
{
6060
}
6161

0 commit comments

Comments
 (0)