From 34195d6560498fdddedaea0934e8e3a51f53d929 Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Wed, 13 Feb 2008 19:35:53 -0200 Subject: [PATCH 1/1] Bugfix: explicit cast functions returning bool. Signed-off-by: Leandro Lucarella --- ev/c.d | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ev/c.d b/ev/c.d index 70f9532..c19e15b 100644 --- a/ev/c.d +++ b/ev/c.d @@ -348,17 +348,17 @@ version (EV_EMBED_ENABLE) bool ev_is_pending(TYPE)(TYPE* w) { - return w.pending; + return cast (bool) w.pending; } bool ev_is_active(TYPE)(TYPE* w) { - return w.active; + return cast (bool) w.active; } int ev_priority(TYPE)(TYPE* w) { - return w.priority; + return cast (bool) w.priority; } void function(ev_loop_t*, TYPE*, int) ev_cb(TYPE)(TYPE* w) -- 2.43.0