Gentoo Archives: gentoo-commits

From: "Michael Palimaka (kensington)" <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/beecrypt/files: beecrypt-4.2.1-gcc-4.7.patch
Date: Thu, 07 Jun 2012 16:43:27
Message-Id: 20120607164317.431092004C@flycatcher.gentoo.org
1 kensington 12/06/07 16:43:17
2
3 Added: beecrypt-4.2.1-gcc-4.7.patch
4 Log:
5 Fix build with GCC 4.7 wrt bug #413951. Thanks to Olivier Huber <oli.huber@×××××.com> for the patch.
6
7 (Portage version: 2.1.10.65/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 dev-libs/beecrypt/files/beecrypt-4.2.1-gcc-4.7.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/beecrypt/files/beecrypt-4.2.1-gcc-4.7.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/beecrypt/files/beecrypt-4.2.1-gcc-4.7.patch?rev=1.1&content-type=text/plain
14
15 Index: beecrypt-4.2.1-gcc-4.7.patch
16 ===================================================================
17 --- include/beecrypt/c++/util/AbstractSet.h
18 +++ include/beecrypt/c++/util/AbstractSet.h
19 @@ -56,7 +56,7 @@
20 if (c->size() != size())
21 return false;
22
23 - return containsAll(*c);
24 + return this->containsAll(*c);
25 }
26 return false;
27 }