| 261 | } |
| 262 | |
| 263 | void CLogDataVector::append(const CGitHash& sha, bool storeInVector, bool onlyFirstParent) |
| 264 | { |
| 265 | if (storeInVector) |
| 266 | this->push_back(sha); |
| 267 | |
| 268 | GitRevLoglist* r = &m_pLogCache->m_HashMap[sha]; |
| 269 | updateLanes(*r, this->m_Lns, sha, onlyFirstParent); |
| 270 | } |
| 271 | |
| 272 | void CLogDataVector::setLane(const CGitHash& sha, bool onlyFirstParent) |
| 273 | { |
no outgoing calls
no test coverage detected