From b210d61869edb0dbe0362db6a7226dada30ef94a Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Mon, 18 Sep 2017 16:38:58 +0200 Subject: [PATCH] src: remove unused static variable MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/15458 Reviewed-By: Colin Ihrig Reviewed-By: James M Snell Reviewed-By: Tobias Nießen Reviewed-By: Anna Henningsen --- src/module_wrap.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/module_wrap.cc b/src/module_wrap.cc index 5d1d60e2be0..294bf9fa9a1 100644 --- a/src/module_wrap.cc +++ b/src/module_wrap.cc @@ -327,7 +327,7 @@ inline const struct read_result read_file(uv_file file) { struct file_check { bool failed = true; uv_file file = -1; -} file_check; +}; inline const struct file_check check_file(URL search, bool close = false, bool allow_dir = false) {