Skip to content

Commit e1542a7

Browse files
sumleoclaude
andcommitted
NFC: Fix clang-format line length in visitArrayInitElem
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 5797dd3 commit e1542a7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/wasm-interpreter.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4597,7 +4597,8 @@ class ModuleRunnerBase : public ExpressionRunner<SubType> {
45974597
// of references in the table! ArrayNew suffers the same problem.
45984598
// Fixing it will require changing how we represent segments, at least
45994599
// in the interpreter.
4600-
data->values[indexVal + i] = self()->visit(seg->data[offsetVal + i]).getSingleValue();
4600+
data->values[indexVal + i] =
4601+
self()->visit(seg->data[offsetVal + i]).getSingleValue();
46014602
}
46024603
return {};
46034604
}

0 commit comments

Comments
 (0)