File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -93,6 +93,14 @@ void ThreadHandler::stop() {
9393void ThreadHandler::threadDone() {
9494 throw 1;
9595}
96+ // NOLINTBEGIN(performance-unnecessary-value-param)
97+ void ThreadHandler::startCheck(CheckThread::Details /*unused*/) {
98+ throw 1;
99+ }
100+ void ThreadHandler::finishCheck(CheckThread::Details /*unused*/) {
101+ throw 1;
102+ }
103+ // NOLINTEND(performance-unnecessary-value-param)
96104Application& ApplicationList::getApplication(const int /*unused*/) {
97105 throw 1;
98106}
@@ -110,7 +118,8 @@ QString XmlReport::unquoteMessage(const QString &message) {
110118 return message;
111119}
112120XmlReport::XmlReport(const QString& filename) : Report(filename) {}
113- void ThreadResult::fileChecked(const QString & /*unused*/) {
121+ // NOLINTNEXTLINE(performance-unnecessary-value-param)
122+ void ThreadResult::finishCheck(CheckThread::Details /*unused*/) {
114123 throw 1;
115124}
116125void ThreadResult::reportOut(const std::string & /*unused*/, Color /*unused*/) {
You can’t perform that action at this time.
0 commit comments