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:
authorRefael Ackermann <refack@gmail.com>2019-02-26 01:27:19 +0300
committerRefael Ackermann <refack@gmail.com>2019-03-12 16:57:19 +0300
commitf2064dfc1fee2daa0537bc27d79d5aa0f734faaf (patch)
tree8e7c60ae471af748fe710193a3662d13de25c3fe /src/inspector_agent.cc
parent902998190a55d6915b881936f6dd5b6e9cca6ad8 (diff)
src: de-lint header usage
PR-URL: https://github.com/nodejs/node/pull/26306 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Diffstat (limited to 'src/inspector_agent.cc')
-rw-r--r--src/inspector_agent.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/inspector_agent.cc b/src/inspector_agent.cc
index 2376ae50044..7b4dec90fc9 100644
--- a/src/inspector_agent.cc
+++ b/src/inspector_agent.cc
@@ -16,16 +16,16 @@
#include "libplatform/libplatform.h"
+#ifdef __POSIX__
+#include <pthread.h>
+#include <climits> // PTHREAD_STACK_MIN
+#endif // __POSIX__
+
#include <cstring>
#include <sstream>
#include <unordered_map>
#include <vector>
-#ifdef __POSIX__
-#include <climits> // PTHREAD_STACK_MIN
-#include <pthread.h>
-#endif // __POSIX__
-
namespace node {
namespace inspector {
namespace {