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

@ -990,7 +990,7 @@ void cheat_manager_dialog::do_the_search()
lst_search->clear();
const size_t size = offsets_found.size();
const usz size = offsets_found.size();
if (size == 0)
{
@ -1018,7 +1018,7 @@ void cheat_manager_dialog::do_the_search()
void cheat_manager_dialog::update_cheat_list()
{
size_t num_rows = 0;
usz num_rows = 0;
for (const auto& name : g_cheat.cheats)
num_rows += name.second.size();