diff options
author | 2010-07-03 16:55:05 +0000 | |
---|---|---|
committer | 2010-07-03 16:55:05 +0000 | |
commit | 9a3f14a507855172fa478efb473e5551f757a517 (patch) | |
tree | b7d044f6c3d799d1f49d701cb918a01f3d519d73 /dev-libs/libev/files | |
parent | Revision bump with bugfixes (diff) | |
download | gentoo-2-9a3f14a507855172fa478efb473e5551f757a517.tar.gz gentoo-2-9a3f14a507855172fa478efb473e5551f757a517.tar.bz2 gentoo-2-9a3f14a507855172fa478efb473e5551f757a517.zip |
Fixed compilation error in ev++.h, bug #325391.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/libev/files')
-rw-r--r-- | dev-libs/libev/files/libev-3.90-ev++.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/dev-libs/libev/files/libev-3.90-ev++.patch b/dev-libs/libev/files/libev-3.90-ev++.patch new file mode 100644 index 000000000000..815b63eb5f89 --- /dev/null +++ b/dev-libs/libev/files/libev-3.90-ev++.patch @@ -0,0 +1,11 @@ +--- /schmorpforge/libev/ev++.h 2010/03/16 00:43:22 1.49 ++++ /schmorpforge/libev/ev++.h 2010/06/24 19:22:26 1.50 +@@ -480,7 +480,7 @@ + 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) + (); + } + |