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
commit b429f9c7aa
Notes: sideshowbarker 2024-07-17 22:44:38 +09:00
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);
}