* @brief Initialize DiffMap. * @param [in] nlines Lines to add to the list. */
| 26 | * @param [in] nlines Lines to add to the list. |
| 27 | */ |
| 28 | void DiffMap::InitDiffMap(int nlines) |
| 29 | { |
| 30 | // sentry value so we can check later that we set them all |
| 31 | m_map.assign(nlines, BAD_MAP_ENTRY); |
| 32 | } |
| 33 | |
| 34 | |
| 35 | /** |
no test coverage detected