Add usz alias for std::size_t

This commit is contained in:
Nekotekina 2020-12-18 10:39:54 +03:00
parent 360c4d1554
commit fb29933d3d
173 changed files with 718 additions and 717 deletions

View file

@ -250,7 +250,7 @@ void save_manager_dialog::UpdateList()
}
QList<int> indices;
for (size_t i = 0; i < m_save_entries.size(); ++i)
for (usz i = 0; i < m_save_entries.size(); ++i)
indices.append(static_cast<int>(i));
std::function<QPixmap(const int&)> get_icon = [this](const int& row)