summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAnna Henningsen <anna@addaleax.net>2017-08-14 20:38:04 +0200
committerAnna Henningsen <anna@addaleax.net>2017-08-17 20:26:59 +0200
commit491cc76871c4bf9351ef6246b3cc6948c37d84f9 (patch)
tree2a045bd67f4aeed8d2d00c3fdfd0760ecbee3549 /Makefile
parent9e08695f85d4273f01e010cf384f42030d66b453 (diff)
downloadandroid-node-v8-491cc76871c4bf9351ef6246b3cc6948c37d84f9.tar.gz
android-node-v8-491cc76871c4bf9351ef6246b3cc6948c37d84f9.tar.bz2
android-node-v8-491cc76871c4bf9351ef6246b3cc6948c37d84f9.zip
src: use `unordered_set` instead of custom rb tree
Use a standard hash-based container instead of the custom included red/black tree implementation. There is likely no noticeable performance difference, and if there is one, it is very likely to be an improvement. PR-URL: https://github.com/nodejs/node/pull/14826 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 0 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index bb02aa3642..5c856e6a2d 100644
--- a/Makefile
+++ b/Makefile
@@ -891,8 +891,6 @@ jslint-ci:
CPPLINT_EXCLUDE ?=
CPPLINT_EXCLUDE += src/node_root_certs.h
-CPPLINT_EXCLUDE += src/queue.h
-CPPLINT_EXCLUDE += src/tree.h
CPPLINT_EXCLUDE += $(wildcard test/addons/??_*/*.cc test/addons/??_*/*.h)
CPPLINT_EXCLUDE += $(wildcard test/addons-napi/??_*/*.cc test/addons-napi/??_*/*.h)
# These files were copied more or less verbatim from V8.