| 380 | } |
| 381 | |
| 382 | void setFineDiff(const e_SrcSelector selector, const std::shared_ptr<DiffList>& pDiffList) |
| 383 | { |
| 384 | assert(selector == e_SrcSelector::A || selector == e_SrcSelector::B || selector == e_SrcSelector::C); |
| 385 | if(selector == e_SrcSelector::A) |
| 386 | { |
| 387 | pFineAB = pDiffList; |
| 388 | } |
| 389 | else if(selector == e_SrcSelector::B) |
| 390 | { |
| 391 | pFineBC = pDiffList; |
| 392 | } |
| 393 | else if(selector == e_SrcSelector::C) |
| 394 | { |
| 395 | pFineCA = pDiffList; |
| 396 | } |
| 397 | } |
| 398 | }; |
| 399 | |
| 400 | struct HistoryRange; |
nothing calls this directly
no outgoing calls
no test coverage detected