Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: SmartLight HelloThreadsYo
Diff: mutexlocker.h
- Revision:
- 3:aab6944f2ed3
- Parent:
- 2:8bf85ca6ccee
--- a/mutexlocker.h Thu Apr 10 22:14:23 2014 +0000
+++ b/mutexlocker.h Thu Apr 10 22:18:40 2014 +0000
@@ -24,4 +24,7 @@
}
private:
Mutex &m_mutex;
+ // Disable copy
+ MutexLocker & operator=(const MutexLocker&);
+ MutexLocker(const MutexLocker &);
};