Skip to content

Commit 1d321b0

Browse files
committed
make both the formatter and the linter happy
1 parent 3c576dd commit 1d321b0

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/api/embed_helpers.cc

+3-4
Original file line numberDiff line numberDiff line change
@@ -166,10 +166,9 @@ CommonEnvironmentSetup::~CommonEnvironmentSetup() {
166166
}
167167

168168
bool platform_finished = false;
169-
impl_->platform->AddIsolateFinishedCallback(
170-
isolate,
171-
[](void* data) { * static_cast<bool*>(data) = true; },
172-
&platform_finished);
169+
impl_->platform->AddIsolateFinishedCallback(isolate, [](void* data) {
170+
*static_cast<bool*>(data) = true;
171+
}, &platform_finished);
173172
impl_->platform->UnregisterIsolate(isolate);
174173
isolate->Dispose();
175174

0 commit comments

Comments
 (0)