| 2479 | } |
| 2480 | |
| 2481 | void DebugInformation::ClearVectorWatchList() |
| 2482 | { |
| 2483 | for (auto& expr : m_vectorWatchExprs) |
| 2484 | free(expr); |
| 2485 | |
| 2486 | m_vectorWatchExprs.clear(); |
| 2487 | m_vectorWatchValues.clear(); |
| 2488 | m_vectorWatchPositions.clear(); |
| 2489 | m_vectorWatchColor.clear(); |
| 2490 | } |
| 2491 | void DebugInformation::RemoveVectorWatch(size_t index) |
| 2492 | { |
| 2493 | free(m_vectorWatchExprs[index]); |