Skip to content

Commit 3bd738e

Browse files
committed
cpp lint fix
1 parent 9947231 commit 3bd738e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/node_contextify.cc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1722,10 +1722,10 @@ static void ContainsModuleSyntax(const FunctionCallbackInfo<Value>& args) {
17221722
return;
17231723
}
17241724
code = String::NewFromUtf8(isolate,
1725-
contents.c_str(),
1726-
v8::NewStringType::kNormal,
1727-
contents.length())
1728-
.ToLocalChecked();
1725+
contents.c_str(),
1726+
v8::NewStringType::kNormal,
1727+
contents.length())
1728+
.ToLocalChecked();
17291729
} else {
17301730
CHECK(args[0]->IsString());
17311731
code = args[0].As<String>();

0 commit comments

Comments
 (0)