From: Mikko Rasa Date: Tue, 14 Jun 2016 05:13:20 +0000 (+0300) Subject: Make Mutex non-copyable X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=commitdiff_plain;h=1fd05fc0d04adf7441ed3a83089e3b8716a72c20 Make Mutex non-copyable --- diff --git a/source/core/mutex.h b/source/core/mutex.h index 0fe9e82..71fbdf0 100644 --- a/source/core/mutex.h +++ b/source/core/mutex.h @@ -18,6 +18,8 @@ private: Private *priv; + Mutex(const Mutex &); + Mutex &operator=(const Mutex &); public: Mutex(); ~Mutex();