diff options
| author | bunnei <bunneidev@gmail.com> | 2015-04-14 19:13:33 -0400 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2015-04-14 19:13:33 -0400 |
| commit | 46ea6944c3f637efee013ecc4ac65fd4985031a8 (patch) | |
| tree | 803f60fa0ed6e8c244f3e0b4eef30b37a61f8e2f /src/citra_qt/debugger/profiler.h | |
| parent | 6f1143885bcc02642b707b51355fe4b6cd5375c7 (diff) | |
| parent | 2e860bd59c914e75cda118a2e4249d20d0d3c394 (diff) | |
Merge pull request #697 from linkmauve/clang<3
Fix a few warnings as reported by clang 3.6
Diffstat (limited to 'src/citra_qt/debugger/profiler.h')
| -rw-r--r-- | src/citra_qt/debugger/profiler.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/citra_qt/debugger/profiler.h b/src/citra_qt/debugger/profiler.h index a6d87aa0f..fabf279b8 100644 --- a/src/citra_qt/debugger/profiler.h +++ b/src/citra_qt/debugger/profiler.h @@ -18,7 +18,7 @@ class ProfilerModel : public QAbstractItemModel public: ProfilerModel(QObject* parent); - QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const; + QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override; QModelIndex index(int row, int column, const QModelIndex& parent = QModelIndex()) const override; QModelIndex parent(const QModelIndex& child) const override; int columnCount(const QModelIndex& parent = QModelIndex()) const override; |
