| 55 | }; |
| 56 | |
| 57 | struct Message |
| 58 | { |
| 59 | MessageType m_type; |
| 60 | std::variant< |
| 61 | std::nullopt_t, |
| 62 | const std::vector<std::wstring>*, |
| 63 | std::exception_ptr> m_arg; |
| 64 | }; |
| 65 | |
| 66 | std::mutex m_queueLock; |
| 67 | std::condition_variable m_queueCV; |
nothing calls this directly
no outgoing calls
no test coverage detected