Underlying OS primitives can't be copied or moved
| 75 | |
| 76 | // Underlying OS primitives can't be copied or moved |
| 77 | ConditionVariable(const ConditionVariable&) = delete; |
| 78 | ConditionVariable(ConditionVariable&&) = delete; |
| 79 | ConditionVariable& operator=(const ConditionVariable&) = delete; |
| 80 | ConditionVariable& operator=(ConditionVariable&&) = delete; |