Skip to content

Commit

Permalink
ci: fix a clazy warning
Browse files Browse the repository at this point in the history
false positive
  • Loading branch information
iamsergio committed Jan 20, 2025
1 parent 9440590 commit 64d8169
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/toolbartraylayout.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ QLayoutItem *ToolBarTrayLayout::takeAt(int index)
if (index < rowCount) {
auto *item = items.takeAt(index).widgetItem;
if (items.empty())
m_rows.erase(it);
m_rows.erase(it); // clazy:exclude=strict-iterators
return item;
}
index -= rowCount;
Expand Down

0 comments on commit 64d8169

Please sign in to comment.