| 34 | } |
| 35 | |
| 36 | void CMassiveGitTaskBase::AddFile(const CString& filename) |
| 37 | { |
| 38 | assert(m_bUnused); |
| 39 | if (m_bIsPath) |
| 40 | m_pathList.AddPath(filename); |
| 41 | else |
| 42 | m_itemList.push_back(filename); |
| 43 | } |
| 44 | |
| 45 | void CMassiveGitTaskBase::AddFile(const CTGitPath& filename) |
| 46 | { |
no test coverage detected