summaryrefslogtreecommitdiff
path: root/src/node_file.cc
diff options
context:
space:
mode:
authorgengjiawen <technicalcute@gmail.com>2019-02-13 20:50:39 +0800
committerAnto Aravinth <anto.aravinth.cse@gmail.com>2019-02-17 10:43:30 +0530
commit3fbf55a87c5c74fef93b16721834f9e270796cef (patch)
tree72ed013f7ece9a2085c422176a9f324c4d9c5463 /src/node_file.cc
parent5bb7764b68e6cd9ef510df6f31c82c8f38e0f14c (diff)
downloadandroid-node-v8-3fbf55a87c5c74fef93b16721834f9e270796cef.tar.gz
android-node-v8-3fbf55a87c5c74fef93b16721834f9e270796cef.tar.bz2
android-node-v8-3fbf55a87c5c74fef93b16721834f9e270796cef.zip
src: remove unused macro in node_file.cc
PR-URL: https://github.com/nodejs/node/pull/26073 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'src/node_file.cc')
-rw-r--r--src/node_file.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/node_file.cc b/src/node_file.cc
index 606900f227..960fd052e8 100644
--- a/src/node_file.cc
+++ b/src/node_file.cc
@@ -74,10 +74,6 @@ using v8::Uint32;
using v8::Undefined;
using v8::Value;
-#ifndef MIN
-# define MIN(a, b) ((a) < (b) ? (a) : (b))
-#endif
-
#ifndef S_ISDIR
# define S_ISDIR(mode) (((mode) & S_IFMT) == S_IFDIR)
#endif