Skip to content

Commit 182151c

Browse files
committed
squash! lint
1 parent a23c508 commit 182151c

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/js_native_api_v8.cc

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3168,9 +3168,8 @@ napi_status NAPI_CDECL node_api_create_external_sharedarraybuffer(
31683168
CHECK(!!unique_backing_store); // Cannot fail.
31693169
auto shared_backing_store =
31703170
std::shared_ptr<v8::BackingStore>(std::move(unique_backing_store));
3171-
auto shared_array_buffer = v8::SharedArrayBuffer::New(
3172-
env->isolate,
3173-
std::move(shared_backing_store));
3171+
auto shared_array_buffer =
3172+
v8::SharedArrayBuffer::New(env->isolate, std::move(shared_backing_store));
31743173
CHECK_MAYBE_EMPTY(env, shared_array_buffer, napi_generic_failure);
31753174
*result = v8impl::JsValueFromV8LocalValue(shared_array_buffer);
31763175
return napi_clear_last_error(env);

0 commit comments

Comments
 (0)