fix: prevent accidental copying of Mutex

This commit is contained in:
maelstrom 2026-05-28 17:19:36 +02:00
commit 4f15a6f7d9

View file

@ -28,6 +28,9 @@ namespace fishbone {
Mutex();
~Mutex();
Mutex(const Mutex&) = delete;
Mutex& operator=(const Mutex&) = delete;
void lock();
void unlock();
};