From d202c05f7ebfd6adebee67c986592cd60a8c660a 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 a117ba24bf852f..73d248c373ea00 100644 --- a/src/module_wrap.cc +++ b/src/module_wrap.cc @@ -322,7 +322,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) {