From 4db49fe6a6e3480413b37706c41fed51163f82b0 Mon Sep 17 00:00:00 2001 From: Christian Semmler Date: Mon, 26 Jun 2023 18:48:19 +0200 Subject: [PATCH] match MxAutoLocker ctor/dtor (#52) --- LEGO1/mxautolocker.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LEGO1/mxautolocker.h b/LEGO1/mxautolocker.h index 16dcb907..a2ce6caa 100644 --- a/LEGO1/mxautolocker.h +++ b/LEGO1/mxautolocker.h @@ -7,7 +7,7 @@ class MxAutoLocker { public: MxAutoLocker(MxCriticalSection* cs); - virtual ~MxAutoLocker(); + ~MxAutoLocker(); private: MxCriticalSection* m_criticalSection; };