From 42f1e26540cae181e679b8975c64331e406545b0 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 10 Feb 2017 21:29:42 +0100 Subject: [PATCH] IOThread: remove unused Cond variable --- src/IOThread.cxx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/IOThread.cxx b/src/IOThread.cxx index 1fa140095..a7782a0f0 100644 --- a/src/IOThread.cxx +++ b/src/IOThread.cxx @@ -20,7 +20,6 @@ #include "config.h" #include "IOThread.hxx" #include "thread/Mutex.hxx" -#include "thread/Cond.hxx" #include "thread/Thread.hxx" #include "thread/Name.hxx" #include "event/Loop.hxx" @@ -29,7 +28,6 @@ static struct { Mutex mutex; - Cond cond; EventLoop *loop; Thread thread;