Skip to content

Commit 3aaf8d9

Browse files
committed
format
1 parent 3f395a5 commit 3aaf8d9

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/tools/wasm-ctor-eval.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1389,7 +1389,8 @@ void evalCtors(Module& wasm,
13891389
// Any reference type might refer to a continuation, so disallow refs
13901390
// too.
13911391
auto features = func->getResults().getFeatures();
1392-
instance.allowContNew = !features.hasStackSwitching() && !features.hasReferenceTypes();
1392+
instance.allowContNew =
1393+
!features.hasStackSwitching() && !features.hasReferenceTypes();
13931394
}
13941395

13951396
auto outcome = evalCtor(instance, interface, func->name, ctor);

0 commit comments

Comments
 (0)