mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 03:07:44 +00:00
ProfileViewer: Unbreak after Vector size_t changes
Another backwards iteration accident.
This commit is contained in:
parent
d61359ae91
commit
79e06e8308
1 changed files with 1 additions and 1 deletions
|
@ -157,7 +157,7 @@ void Profile::rebuild_tree()
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
for (size_t i = sample.frames.size() - 1; i >= 0; --i) {
|
for (ssize_t i = sample.frames.size() - 1; i >= 0; --i) {
|
||||||
if (callback(sample.frames.at(i)) == IterationDecision::Break)
|
if (callback(sample.frames.at(i)) == IterationDecision::Break)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue