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
path: root/src
diff options
context:
space:
mode:
authorJuan José Arboleda <soyjuanarbol@gmail.com>2019-12-07 02:52:45 +0300
committerRuben Bridgewater <ruben@bridgewater.de>2019-12-20 03:31:29 +0300
commitdb9539bba4d62db3b73baf1575a9c3dfcd4d1f32 (patch)
tree21e517a043fd0b0f846acd6d787ac7f782fcc608 /src
parentff5664b83b89c55e4ab5d5f60068fb457f1f5872 (diff)
src: list used functions on headers
PR-URL: https://github.com/nodejs/node/pull/30827 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Minwoo Jung <nodecorelab@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/node_platform.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/node_platform.cc b/src/node_platform.cc
index 383f67ce0f3..4e3a6dbc279 100644
--- a/src/node_platform.cc
+++ b/src/node_platform.cc
@@ -3,9 +3,9 @@
#include "env-inl.h"
#include "debug_utils.h"
-#include <algorithm>
-#include <cmath>
-#include <memory>
+#include <algorithm> // find_if(), find(), move()
+#include <cmath> // llround()
+#include <memory> // unique_ptr(), shared_ptr(), make_shared()
namespace node {