diff options
Diffstat (limited to 'ev++.h')
-rw-r--r-- | ev++.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -480,7 +480,7 @@ namespace ev { template<class K, void (K::*method)()> static void method_noargs_thunk (EV_P_ ev_watcher *w, int revents) { - static_cast<K *>(w->data)->*method + (static_cast<K *>(w->data)->*method) (); } |