Skip to content
This repository was archived by the owner on Oct 15, 2020. It is now read-only.

Commit 1b50f3d

Browse files
committed
src: fix cpplint error
PR-URL: #329 Reviewed-By: Jimmy Thomson <jithomso@microsoft.com>
1 parent 1417fa2 commit 1b50f3d

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/node_api_jsrt.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,8 @@ napi_status napi_delete_property(napi_env env,
584584
JsPropertyIdRef propertyId;
585585
JsValueRef deletePropertyResult;
586586
CHECK_NAPI(jsrtimpl::JsPropertyIdFromKey(key, &propertyId));
587-
CHECK_JSRT(JsDeleteProperty(obj, propertyId, false /* isStrictMode */, &deletePropertyResult));
587+
CHECK_JSRT(JsDeleteProperty(obj, propertyId, false /* isStrictMode */,
588+
&deletePropertyResult));
588589
CHECK_JSRT(JsBooleanToBool(deletePropertyResult, result));
589590

590591
return napi_ok;

0 commit comments

Comments
 (0)