From d00de9321b698e2074919b638d0a2ee087077a64 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Fri, 14 Oct 2016 12:43:02 +0200 Subject: [PATCH] win: remove unused static variables MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit default_loop_struct and default_loop_ptr seem to have been overlooked in commit 32747c7 ("win,unix: move loop functions which have identical implementations".) PR-URL: https://github.com/libuv/libuv/pull/1097 Reviewed-By: Andrius Bentkus Reviewed-By: Colin Ihrig Reviewed-By: Santiago Gimeno Reviewed-By: Saúl Ibarra Corretgé --- src/win/core.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/win/core.c b/src/win/core.c index 9d00afc6..e84186d4 100644 --- a/src/win/core.c +++ b/src/win/core.c @@ -35,10 +35,6 @@ #include "handle-inl.h" #include "req-inl.h" - -static uv_loop_t default_loop_struct; -static uv_loop_t* default_loop_ptr; - /* uv_once initialization guards */ static uv_once_t uv_init_guard_ = UV_ONCE_INIT;