From: David Elliott Date: Mon, 16 Jul 2007 17:01:16 +0000 (+0000) Subject: The wxUSE_EPOLL_DISPATCHER (like other wxUSE flags) is a 0/1 not an undef/def conditi... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/9550ee9870c6882b3affbf30e12129d8016a1c89 The wxUSE_EPOLL_DISPATCHER (like other wxUSE flags) is a 0/1 not an undef/def conditional. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@47500 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/unix/epolldispatcher.cpp b/src/unix/epolldispatcher.cpp index e52aa35669..92a0bb0617 100644 --- a/src/unix/epolldispatcher.cpp +++ b/src/unix/epolldispatcher.cpp @@ -19,7 +19,7 @@ // for compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" -#ifdef wxUSE_EPOLL_DISPATCHER +#if wxUSE_EPOLL_DISPATCHER #include "wx/unix/private/epolldispatcher.h" #include "wx/unix/private.h"