From 847ab3a47ec3f6c0b6b702b8dbf77faa9d1d3f55 Mon Sep 17 00:00:00 2001 From: Jeff Becker Date: Tue, 3 Dec 2019 16:09:22 -0500 Subject: [PATCH] make it compile --- llarp/ev/ev_libuv.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/llarp/ev/ev_libuv.cpp b/llarp/ev/ev_libuv.cpp index db7407491..d6098c734 100644 --- a/llarp/ev/ev_libuv.cpp +++ b/llarp/ev/ev_libuv.cpp @@ -843,12 +843,6 @@ namespace libuv { if(m_Run) { - if((uv_now(&m_Impl) - last_time) > 1000) - { - loop_run_count = 0; - last_time = uv_now(&m_Impl); - } - loop_run_count++; uv_timer_start(&m_TickTimer, &OnTickTimeout, ms, 0); uv_run(&m_Impl, UV_RUN_ONCE); }