File indexing completed on 2025-01-19 04:22:44
0001 /* 0002 SPDX-FileCopyrightText: 2021 Hamed Masafi <hamed.masfi@gmail.com> 0003 0004 SPDX-License-Identifier: GPL-3.0-or-later 0005 */ 0006 0007 #include "blamedata.h" 0008 0009 namespace Git 0010 { 0011 0012 BlameData::BlameData() = default; 0013 0014 void BlameData::initCommits(const LogList &logs) 0015 { 0016 Q_UNUSED(logs) 0017 // for (auto &l: *this) { 0018 // l.log = logs.findByHash(l.commitHash); 0019 // if (!l.log ) { 0020 // qCDebug(KOMMITLIB_LOG) << "No log found"; 0021 // } 0022 // } 0023 } 0024 0025 bool operator==(const BlameDataRow &l, const BlameDataRow &r) 0026 { 0027 return l.log == r.log; 0028 } 0029 bool operator!=(const BlameDataRow &l, const BlameDataRow &r) 0030 { 0031 return !(l.log == r.log); 0032 } 0033 }