@warning Copy constructor is explicitly deleted.
| 41 | |
| 42 | /// @warning Copy constructor is explicitly deleted. |
| 43 | ConditionVariable(const ConditionVariable& other) = delete; |
| 44 | |
| 45 | /// @warning Move constructor is explicitly deleted. |
| 46 | ConditionVariable(ConditionVariable&& other) = delete; |
nothing calls this directly
no outgoing calls
no test coverage detected