mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 02:17:35 +00:00
AK: Add implied const qualifiers to the Json interface
As specified by clang-tidy.
This commit is contained in:
parent
b39c4c62d0
commit
b429f9c7aa
3 changed files with 16 additions and 16 deletions
|
@ -69,7 +69,7 @@ public:
|
|||
template<typename Callback>
|
||||
void for_each(Callback callback) const
|
||||
{
|
||||
for (auto& value : m_values)
|
||||
for (auto const& value : m_values)
|
||||
callback(value);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue