mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 15:28:11 +00:00
AK+Everywhere: Change int to size_t in JsonObject and JsonArray
This commit is contained in:
parent
66526cbbaf
commit
f45273649f
9 changed files with 14 additions and 14 deletions
|
@ -58,7 +58,7 @@ void CommonLocationsProvider::load_from_json(const String& json_path)
|
|||
|
||||
s_common_locations.clear();
|
||||
auto contents = json.value().as_array();
|
||||
for (auto i = 0; i < contents.size(); ++i) {
|
||||
for (size_t i = 0; i < contents.size(); ++i) {
|
||||
auto entry_value = contents.at(i);
|
||||
if (!entry_value.is_object())
|
||||
continue;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue