diff options
-rw-r--r-- | backends/mutex/abstract-mutex.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/backends/mutex/abstract-mutex.h b/backends/mutex/abstract-mutex.h index b5e0263c09..d8647bae13 100644 --- a/backends/mutex/abstract-mutex.h +++ b/backends/mutex/abstract-mutex.h @@ -31,6 +31,8 @@ class MutexManager : Common::NonCopyable { public: + virtual ~MutexManager() {} + virtual OSystem::MutexRef createMutex() = 0; virtual void lockMutex(OSystem::MutexRef mutex) = 0; virtual void unlockMutex(OSystem::MutexRef mutex) = 0; |