diff options
author | Marco Bubke <[email protected]> | 2025-04-15 11:08:46 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2025-04-15 09:14:28 +0000 |
commit | a807c28cde6686c20afda0352fd0256a002f20ee (patch) | |
tree | aab0c9df8430a419e662127feb1f2c08e19bcc17 /src/plugins/qmlprofiler | |
parent | 0503f267e282f327f27067e50db657d6b6e5dd7a (diff) |
Fix warning for ';'
The macro already contain a ';'. Removing the argument or
[[maybe_unused]] would maybe even a better approach.
Change-Id: I31750d10a4f252c667e7c0e5e13bf1085dbe11a2
Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/plugins/qmlprofiler')
-rw-r--r-- | src/plugins/qmlprofiler/quick3dframemodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/qmlprofiler/quick3dframemodel.cpp b/src/plugins/qmlprofiler/quick3dframemodel.cpp index 3a8452c2c0f..5e0a7a75396 100644 --- a/src/plugins/qmlprofiler/quick3dframemodel.cpp +++ b/src/plugins/qmlprofiler/quick3dframemodel.cpp @@ -72,7 +72,7 @@ int Quick3DFrameModel::rowCount(const QModelIndex &parent) const int Quick3DFrameModel::columnCount(const QModelIndex &parent) const { - Q_UNUSED(parent); + Q_UNUSED(parent) return MaxColumnType; } |