Skip to content

Commit 0c9c0fb

Browse files
committed
Lint
1 parent e5700e7 commit 0c9c0fb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

module.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,8 @@ void RegisterThread(const FunctionCallbackInfo<Value> &args) {
235235
std::lock_guard<std::mutex> lock(threads_mutex);
236236
auto found = threads.find(isolate);
237237
if (found == threads.end()) {
238-
threads.emplace(isolate, ThreadInfo{thread_name, milliseconds::zero(), ""});
238+
threads.emplace(isolate,
239+
ThreadInfo{thread_name, milliseconds::zero(), ""});
239240
// Register a cleanup hook to remove this thread when the isolate is
240241
// destroyed
241242
node::AddEnvironmentCleanupHook(isolate, Cleanup, isolate);

0 commit comments

Comments
 (0)