match MxAutoLocker ctor/dtor (#52)

This commit is contained in:
Christian Semmler 2023-06-26 18:48:19 +02:00 committed by GitHub
parent 0b47f3fff3
commit 4db49fe6a6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,7 +7,7 @@ class MxAutoLocker
{
public:
MxAutoLocker(MxCriticalSection* cs);
virtual ~MxAutoLocker();
~MxAutoLocker();
private:
MxCriticalSection* m_criticalSection;
};