| 14 | #include <memory> |
| 15 | |
| 16 | Merger::Merger(const std::shared_ptr<const DiffList>& pDiffList1, const std::shared_ptr<const DiffList>& pDiffList2): |
| 17 | md1(pDiffList1, 0), md2(pDiffList2, 1) |
| 18 | { |
| 19 | } |
| 20 | |
| 21 | Merger::MergeData::MergeData(const std::shared_ptr<const DiffList>& p, qint32 i) |
| 22 | { |
nothing calls this directly
no outgoing calls
no test coverage detected