feat/test: Add test harness #1

Merged
nishi merged 5 commits from feat/test into master 2026-05-29 00:23:20 +09:00
Showing only changes of commit 4f15a6f7d9 - Show all commits

fix: prevent accidental copying of Mutex

maelstrom 2026-05-28 17:19:36 +02:00

View file

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