1
Fork 0
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:
Hendiadyoin1 2021-12-15 14:49:35 +01:00 committed by Brian Gianforcaro
parent b39c4c62d0
commit b429f9c7aa
3 changed files with 16 additions and 16 deletions

View file

@ -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);
}