mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-06 01:26:22 +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
Notes:
sideshowbarker
2024-07-17 22:44:38 +09:00
Author: https://github.com/Hendiadyoin1
Commit: b429f9c7aa
Pull-request: https://github.com/SerenityOS/serenity/pull/11268
Reviewed-by: https://github.com/alimpfard
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