diff options
author | Joyee Cheung <joyeec9h3@gmail.com> | 2018-12-31 23:18:08 +0800 |
---|---|---|
committer | Joyee Cheung <joyeec9h3@gmail.com> | 2019-01-11 20:11:55 +0800 |
commit | 7824280b5827e1aaba067088b195328185525b21 (patch) | |
tree | 7c1971d1ee5ac4a6f02b38e8fb6bfebf5a02c250 /src/uv.cc | |
parent | 5a15f4bdfa060082757062dc5f39519d93e7b8fb (diff) | |
download | node-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.cc | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 { |