summaryrefslogtreecommitdiff
path: root/src/uv.cc
diff options
context:
space:
mode:
authorJoyee Cheung <joyeec9h3@gmail.com>2018-12-31 23:18:08 +0800
committerJoyee Cheung <joyeec9h3@gmail.com>2019-01-11 20:11:55 +0800
commit7824280b5827e1aaba067088b195328185525b21 (patch)
tree7c1971d1ee5ac4a6f02b38e8fb6bfebf5a02c250 /src/uv.cc
parent5a15f4bdfa060082757062dc5f39519d93e7b8fb (diff)
downloadnode-new-7824280b5827e1aaba067088b195328185525b21.tar.gz
src: declare process-related C++ methods in node_process.h
Instead of in node_internals.h. Also move process property accessors that are not reused into node_process_object.cc and make them static. PR-URL: https://github.com/nodejs/node/pull/25397 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
Diffstat (limited to 'src/uv.cc')
-rw-r--r--src/uv.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/uv.cc b/src/uv.cc
index a7d0b1012c..5422b0d240 100644
--- a/src/uv.cc
+++ b/src/uv.cc
@@ -20,9 +20,10 @@
// USE OR OTHER DEALINGS IN THE SOFTWARE.
#include "uv.h"
+#include "env-inl.h"
#include "node.h"
#include "node_internals.h"
-#include "env-inl.h"
+#include "node_process.h"
namespace node {