diff options
author | root <root> | 2007-11-14 04:45:07 +0000 |
---|---|---|
committer | root <root> | 2007-11-14 04:45:07 +0000 |
commit | 81cf5185ab497ccd9b0655d5b1fbe4db569e5228 (patch) | |
tree | bfb96bd248fec6b0cd2b0cafa27f1fe906845a79 /ev++.h | |
parent | 6daf477f5adf014ccef3f6fb81360bd640bc736d (diff) |
fix ev++
Diffstat (limited to 'ev++.h')
-rw-r--r-- | ev++.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -95,7 +95,7 @@ namespace ev { * so a macro solution was chosen */ #define EV_BEGIN_WATCHER(cppstem,cstem) \ \ - static void cb_ ## cppstem (struct ev_ ## cstem *w, int revents); \ + static void cb_ ## cppstem (EV_P_ struct ev_ ## cstem *w, int revents); \ \ struct cppstem : ev_ ## cstem, callback<cppstem> \ { \ @@ -146,7 +146,7 @@ namespace ev { #define EV_END_WATCHER(cppstem,cstem) \ }; \ \ - static void cb_ ## cppstem (struct ev_ ## cstem *w, int revents) \ + static void cb_ ## cppstem (EV_P_ struct ev_ ## cstem *w, int revents) \ { \ (*static_cast<cppstem *>(w))(revents); \ } |