| 233 | } |
| 234 | |
| 235 | GenericResponseSentHandler responseSent(const dap::TypeInfo* typeinfo) { |
| 236 | std::unique_lock<std::mutex> lock(responseSentMutex); |
| 237 | auto it = responseSentMap.find(typeinfo); |
| 238 | return (it != responseSentMap.end()) ? it->second |
| 239 | : decltype(it->second){}; |
| 240 | } |
| 241 | |
| 242 | void put(const dap::TypeInfo* typeinfo, |
| 243 | const GenericResponseSentHandler& handler) { |
no test coverage detected