X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Fcore%2Fmutex.h;fp=source%2Fcore%2Fmutex.h;h=99585103704d00d4bbde53edf3927975286f0898;hp=b619fcdb7c6b9127a550a296c9f4cb521d0d3ecc;hb=7292f4413397b7f2e4689f7597f4b9e73435352e;hpb=8f48ddb94a4b7981f7f88a8ec6d7c672a3c6d7bb diff --git a/source/core/mutex.h b/source/core/mutex.h index b619fcd..9958510 100644 --- a/source/core/mutex.h +++ b/source/core/mutex.h @@ -40,6 +40,9 @@ public: ~MutexLock() { mutex.unlock(); } private: Mutex &mutex; + + MutexLock(const MutexLock &); + MutexLock &operator=(const MutexLock &); };