Solve some unreferenced parameter warnings

(C4100: unreferenced formal parameter)
This commit is contained in:
Vitor Kiguchi
2020-07-24 01:35:52 -03:00
parent d87fee05a9
commit ecb2541a93
10 changed files with 22 additions and 3 deletions

View File

@ -15,6 +15,7 @@ GPUCommandStreamItemModel::GPUCommandStreamItemModel(QObject* parent)
}
int GPUCommandStreamItemModel::rowCount(const QModelIndex& parent) const {
Q_UNUSED(parent);
return command_count;
}