summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatsuu Takuto <matsuu@gentoo.org>2010-07-03 16:55:05 +0000
committerMatsuu Takuto <matsuu@gentoo.org>2010-07-03 16:55:05 +0000
commit9a3f14a507855172fa478efb473e5551f757a517 (patch)
treeb7d044f6c3d799d1f49d701cb918a01f3d519d73 /dev-libs/libev/files
parentRevision bump with bugfixes (diff)
downloadgentoo-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++.patch11
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)
+ ();
+ }
+