1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 17:27:34 +00:00

AK+Everywhere: Change int to size_t in JsonObject and JsonArray

This commit is contained in:
Max Wipfli 2021-06-28 11:57:37 +02:00 committed by Andreas Kling
parent 66526cbbaf
commit f45273649f
9 changed files with 14 additions and 14 deletions

View file

@ -44,7 +44,7 @@ public:
return *this;
}
int size() const { return m_members.size(); }
size_t size() const { return m_members.size(); }
bool is_empty() const { return m_members.is_empty(); }
JsonValue const& get(String const& key) const