Underlying OS primitives can't be copied or moved
| 40 | |
| 41 | // Underlying OS primitives can't be copied or moved |
| 42 | Mutex(const Mutex&) = delete; |
| 43 | Mutex(Mutex&&) = delete; |
| 44 | Mutex& operator=(const Mutex&) = delete; |
| 45 | Mutex& operator=(Mutex&&) = delete; |