Skip to content

Commit 45b8187

Browse files
improved readability
1 parent 28afdf0 commit 45b8187

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

nan.h

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -821,8 +821,7 @@ inline uv_loop_t* GetCurrentEventLoop() {
821821
, int index) {
822822
#if (V8_MAJOR_VERSION > 14) || \
823823
(V8_MAJOR_VERSION == 14 && V8_MINOR_VERSION > 2) || \
824-
(V8_MAJOR_VERSION == 14 && V8_MINOR_VERSION == 2 && \
825-
V8_BUILD_NUMBER >= 194)
824+
(V8_MAJOR_VERSION == 14 && V8_MINOR_VERSION == 2 && V8_BUILD_NUMBER >= 194)
826825
return object->GetAlignedPointerFromInternalField(
827826
index, v8::kEmbedderDataTypeTagDefault
828827
);
@@ -837,8 +836,7 @@ inline uv_loop_t* GetCurrentEventLoop() {
837836
, void* value) {
838837
#if (V8_MAJOR_VERSION > 14) || \
839838
(V8_MAJOR_VERSION == 14 && V8_MINOR_VERSION > 2) || \
840-
(V8_MAJOR_VERSION == 14 && V8_MINOR_VERSION == 2 && \
841-
V8_BUILD_NUMBER >= 194)
839+
(V8_MAJOR_VERSION == 14 && V8_MINOR_VERSION == 2 && V8_BUILD_NUMBER >= 194)
842840
return object->GetAlignedPointerFromInternalField(
843841
object->SetAlignedPointerInInternalField(
844842
index, value, v8::kEmbedderDataTypeTagDefault

0 commit comments

Comments
 (0)