| 5142 | } |
| 5143 | |
| 5144 | void CClient::AddWarning(const SWarning &Warning) |
| 5145 | { |
| 5146 | const std::unique_lock<std::mutex> Lock(m_WarningsMutex); |
| 5147 | m_vWarnings.emplace_back(Warning); |
| 5148 | } |
| 5149 | |
| 5150 | std::optional<SWarning> CClient::CurrentWarning() |
| 5151 | { |
no outgoing calls
no test coverage detected