Gentoo Archives: gentoo-commits

From: "Matsuu Takuto (matsuu)" <matsuu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libev/files: libev-3.90-ev++.patch
Date: Sat, 03 Jul 2010 16:55:13
Message-Id: 20100703165505.682702C5F4@corvid.gentoo.org
1 matsuu 10/07/03 16:55:05
2
3 Added: libev-3.90-ev++.patch
4 Log:
5 Fixed compilation error in ev++.h, bug #325391.
6 (Portage version: 2.1.8.3/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 dev-libs/libev/files/libev-3.90-ev++.patch
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libev/files/libev-3.90-ev++.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libev/files/libev-3.90-ev++.patch?rev=1.1&content-type=text/plain
13
14 Index: libev-3.90-ev++.patch
15 ===================================================================
16 --- /schmorpforge/libev/ev++.h 2010/03/16 00:43:22 1.49
17 +++ /schmorpforge/libev/ev++.h 2010/06/24 19:22:26 1.50
18 @@ -480,7 +480,7 @@
19 template<class K, void (K::*method)()>
20 static void method_noargs_thunk (EV_P_ ev_watcher *w, int revents)
21 {
22 - static_cast<K *>(w->data)->*method
23 + (static_cast<K *>(w->data)->*method)
24 ();
25 }