mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-07 18:17:23 +00:00
AK+Everywhere: Change int to size_t in JsonObject and JsonArray
This commit is contained in:
parent
66526cbbaf
commit
f45273649f
Notes:
sideshowbarker
2024-07-18 11:21:23 +09:00
Author: https://github.com/MaxWipfli
Commit: f45273649f
Pull-request: https://github.com/SerenityOS/serenity/pull/8293
Reviewed-by: https://github.com/alimpfard
Reviewed-by: https://github.com/awesomekling
9 changed files with 14 additions and 14 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue