feat/test: Add test harness #1
1 changed files with 3 additions and 0 deletions
fix: prevent accidental copying of Mutex
commit
4f15a6f7d9
|
|
@ -28,6 +28,9 @@ namespace fishbone {
|
||||||
Mutex();
|
Mutex();
|
||||||
~Mutex();
|
~Mutex();
|
||||||
|
|
||||||
|
Mutex(const Mutex&) = delete;
|
||||||
|
Mutex& operator=(const Mutex&) = delete;
|
||||||
|
|
||||||
void lock();
|
void lock();
|
||||||
void unlock();
|
void unlock();
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue