1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 19:07:34 +00:00

Profiler: Add some implied auto qualifiers

This commit is contained in:
Hendiadyoin1 2021-12-22 16:37:50 +01:00 committed by Brian Gianforcaro
parent d001f8ba70
commit 39a4c0e6ce
11 changed files with 40 additions and 40 deletions

View file

@ -266,7 +266,7 @@ public:
void for_each_signpost(Callback callback) const
{
for (auto index : m_signpost_indices) {
auto& event = m_events[index];
auto const& event = m_events[index];
if (callback(event) == IterationDecision::Break)
break;
}