| 253 | } |
| 254 | |
| 255 | void reset() |
| 256 | { |
| 257 | for (auto &it : m_pending) { |
| 258 | it.second.second = true; |
| 259 | for (auto &b : m_breakpoints) { |
| 260 | if (b.id == it.second.first) { |
| 261 | b.data.emplace<std::string>(it.first); |
| 262 | break; |
| 263 | } |
| 264 | } |
| 265 | } |
| 266 | } |
| 267 | }; |
| 268 | |
| 269 | using callback_t = std::function<bool(const std::string &)>; |