Skip to content

Commit

Permalink
clang-tidy warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
danmar committed Aug 31, 2023
1 parent 7e6bfd7 commit 86bc9e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gui/checkstatistics.h
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ class CheckStatistics : public QObject {
QStringList getTools() const;

void setCheckersReport(QString report) {
mCheckersReport = report;
mCheckersReport = std::move(report);
}
QString getCheckersReport() const {
return mCheckersReport;
Expand Down
2 changes: 1 addition & 1 deletion gui/resultsview.h
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ public slots:

CheckStatistics *mStatistics;

Settings* mCheckSettings;
Settings* mCheckSettings = nullptr;

/**
* Set to true when checking finish successfully. Set to false whenever analysis starts.
Expand Down

0 comments on commit 86bc9e4

Please sign in to comment.