fix: get rid of some more warnings (#5672)
This commit is contained in:
@@ -19,7 +19,7 @@ QVariant GenericListModel::data(const QModelIndex &index, int /* role */) const
|
||||
return {};
|
||||
}
|
||||
|
||||
if (index.row() >= this->items_.size())
|
||||
if (index.row() >= static_cast<int>(this->items_.size()))
|
||||
{
|
||||
return {};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user