| 221 | } |
| 222 | |
| 223 | GenericResponseSentHandler responseSent(const dap::TypeInfo* typeinfo) { |
| 224 | std::unique_lock<std::mutex> lock(responseSentMutex); |
| 225 | auto it = responseSentMap.find(typeinfo); |
| 226 | return (it != responseSentMap.end()) ? it->second |
| 227 | : decltype(it->second){}; |
| 228 | } |
| 229 | |
| 230 | void put(const dap::TypeInfo* typeinfo, |
| 231 | const GenericResponseSentHandler& handler) { |
no test coverage detected