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

@ -100,7 +100,7 @@ void render_creator::update_names(const QStringList& names)
{
for (int i = 0; i < names.size(); i++)
{
if (static_cast<size_t>(i) >= renderers.size() || !renderers[i])
if (static_cast<usz>(i) >= renderers.size() || !renderers[i])
{
cfg_log.error("render_creator::update_names could not update renderer %d", i);
return;