Skip to content

Commit

Permalink
make clang-tidy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
lievenhey committed Oct 23, 2023
1 parent 91ee624 commit 7e878ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/models/disassemblymodel.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class DisassemblyModel : public QAbstractTableModel
Q_OBJECT
public:
explicit DisassemblyModel(KSyntaxHighlighting::Repository* repository, QObject* parent = nullptr);
~DisassemblyModel();
~DisassemblyModel() override;

void setDisassembly(const DisassemblyOutput& disassemblyOutput, const Data::CallerCalleeResults& results);

Expand Down
2 changes: 1 addition & 1 deletion src/models/sourcecodemodel.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class SourceCodeModel : public QAbstractTableModel
Q_OBJECT
public:
explicit SourceCodeModel(KSyntaxHighlighting::Repository* repository, QObject* parent = nullptr);
~SourceCodeModel();
~SourceCodeModel() override;

void clear();
void setDisassembly(const DisassemblyOutput& disassemblyOutput, const Data::CallerCalleeResults& results);
Expand Down

0 comments on commit 7e878ff

Please sign in to comment.