Skip to content

Commit 68e5e93

Browse files
committed
Lint
1 parent e8146e9 commit 68e5e93

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/interp/interp.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1170,7 +1170,8 @@ void Thread::SetRef(Index index) {
11701170
assert(index > 0 && index <= values_.size());
11711171
Index slot = values_.size() - index;
11721172
// keep refs_ ordered!
1173-
auto it = std::find_if(refs_.rbegin(), refs_.rend(), [slot](u32 x) { return x <= slot; });
1173+
auto it = std::find_if(refs_.rbegin(), refs_.rend(),
1174+
[slot](u32 x) { return x <= slot; });
11741175
if (it == refs_.rend() || *it != slot) {
11751176
refs_.insert(it.base(), slot);
11761177
}

0 commit comments

Comments
 (0)