diff --git a/Makefile b/Makefile index 519e920685177f..7fa645f21dd9c9 100644 --- a/Makefile +++ b/Makefile @@ -1334,7 +1334,7 @@ lint-cpp: tools/.cpplintstamp tools/.cpplintstamp: $(LINT_CPP_FILES) @echo "Running C++ linter..." @$(PYTHON) tools/cpplint.py $(CPPLINT_QUIET) $? - @$(PYTHON) tools/checkimports.py + @$(PYTHON) tools/checkimports.py $? @touch $@ .PHONY: lint-addon-docs diff --git a/tools/code_cache/cache_builder.cc b/tools/code_cache/cache_builder.cc index 28d61a6c70c467..837357a0fbda76 100644 --- a/tools/code_cache/cache_builder.cc +++ b/tools/code_cache/cache_builder.cc @@ -13,10 +13,7 @@ namespace node { namespace native_module { using v8::Context; -using v8::Function; -using v8::Isolate; using v8::Local; -using v8::MaybeLocal; using v8::ScriptCompiler; static std::string GetDefName(const std::string& id) {