Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTariq Ramlall <srcmake@gmail.com>2019-07-05 02:53:00 +0300
committerAnna Henningsen <anna@addaleax.net>2019-07-15 01:22:56 +0300
commitd0e380172a0ffe862fe9ff28aad0532da536952b (patch)
tree5c811d169f68928e17ee20180ccb07e898ea7b17 /src/node.h
parent824dc576db6399195298206270ce5f446ee34359 (diff)
src: lint #defines in src/node.h
A few #defines in src/node.h had inconsistent spacing and tabbing. This commit changes the spacing to be the same style as the rest of the project. PR-URL: https://github.com/nodejs/node/pull/28547 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Michaƫl Zasso <targos@protonmail.com>
Diffstat (limited to 'src/node.h')
-rw-r--r--src/node.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/node.h b/src/node.h
index 049690d92fb..f79a518b0f1 100644
--- a/src/node.h
+++ b/src/node.h
@@ -24,9 +24,9 @@
#ifdef _WIN32
# ifndef BUILDING_NODE_EXTENSION
-# define NODE_EXTERN __declspec(dllexport)
+# define NODE_EXTERN __declspec(dllexport)
# else
-# define NODE_EXTERN __declspec(dllimport)
+# define NODE_EXTERN __declspec(dllimport)
# endif
#else
# define NODE_EXTERN __attribute__((visibility("default")))
@@ -43,7 +43,7 @@
// See issue https://github.com/nodejs/node-v0.x-archive/issues/1236
#if defined(__MINGW32__) || defined(_MSC_VER)
#ifndef _WIN32_WINNT
-# define _WIN32_WINNT 0x0600 // Windows Server 2008
+# define _WIN32_WINNT 0x0600 // Windows Server 2008
#endif
#ifndef NOMINMAX
@@ -57,7 +57,7 @@
#endif
#ifdef _WIN32
-# define SIGKILL 9
+# define SIGKILL 9
#endif
#include "v8.h" // NOLINT(build/include_order)
@@ -190,8 +190,8 @@ NODE_DEPRECATED("Use MakeCallback(..., async_context)",
#include <cstdint>
#ifndef NODE_STRINGIFY
-#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)
-#define NODE_STRINGIFY_HELPER(n) #n
+# define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)
+# define NODE_STRINGIFY_HELPER(n) #n
#endif
#ifdef _WIN32