| 12 | // constructor |
| 13 | template <class T> |
| 14 | Map<T>::Map(uint32_t _nRows, uint32_t _nCols) |
| 15 | { |
| 16 | nRows = _nRows; |
| 17 | nCols = _nCols; |
| 18 | std::vector<std::vector<T>> tmp(nRows, std::vector<T>(nCols, {1})); |
| 19 | data = tmp; |
| 20 | } |
| 21 | |
| 22 | template <class T> |
| 23 | void Map<T>::set_row(uint32_t i, std::vector<T> row) |
nothing calls this directly
no outgoing calls
no test coverage detected