Skip to content

Commit 89b8d6b

Browse files
committed
lint
1 parent c621394 commit 89b8d6b

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

src/node_worker.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -947,7 +947,8 @@ void CreateWorkerPerIsolateProperties(IsolateData* isolate_data,
947947
SetProtoMethod(isolate, w, "loopStartTime", Worker::LoopStartTime);
948948

949949
SetConstructorFunction(isolate, target, "Worker", w);
950-
SetMethodNoSideEffect(isolate, target, "hasHooksThread", Worker::HasHooksThread);
950+
SetMethodNoSideEffect(
951+
isolate, target, "hasHooksThread", Worker::HasHooksThread);
951952
}
952953

953954
{

src/node_worker.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
#if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
55

6+
#include <atomic>
67
#include <optional>
78
#include <unordered_map>
8-
#include <atomic>
99
#include "node_exit_code.h"
1010
#include "node_messaging.h"
1111
#include "uv.h"

0 commit comments

Comments
 (0)