| 2439 | } |
| 2440 | |
| 2441 | void DebugInformation::ClearWatchList() |
| 2442 | { |
| 2443 | for (auto& expr : m_watchExprs) |
| 2444 | free(expr); |
| 2445 | |
| 2446 | m_watchExprs.clear(); |
| 2447 | m_watchValues.clear(); |
| 2448 | } |
| 2449 | void DebugInformation::RemoveWatch(size_t index) |
| 2450 | { |
| 2451 | free(m_watchExprs[index]); |