mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 05:17:34 +00:00
AK: Make HashTable and HashMap use size_t for size and capacity
This commit is contained in:
parent
3252a6925e
commit
b813b2f871
4 changed files with 28 additions and 28 deletions
|
@ -490,7 +490,7 @@ void Field::set_chord_preview(Square& square, bool chord_preview)
|
|||
});
|
||||
}
|
||||
|
||||
void Field::set_field_size(int rows, int columns, int mine_count)
|
||||
void Field::set_field_size(int rows, int columns, size_t mine_count)
|
||||
{
|
||||
if (m_rows == rows && m_columns == columns && m_mine_count == mine_count)
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue