--- libev/ev++.h 2011/11/29 15:10:05 1.58 +++ libev/ev++.h 2012/05/09 16:50:23 1.59 @@ -286,7 +286,7 @@ template static void method_thunk (int revents, void *arg) { - static_cast(arg)->*method + (static_cast(arg)->*method) (revents); } @@ -300,7 +300,7 @@ template static void method_noargs_thunk (int revents, void *arg) { - static_cast(arg)->*method + (static_cast(arg)->*method) (); } @@ -513,7 +513,7 @@ void feed_event (int revents) throw () { - ev_feed_event (EV_A_ static_cast(this), revents); + ev_feed_event (EV_A_ static_cast(this), revents); } };