docker-engine: new package
[buildroot-gz.git] / package / beecrypt / 0004-gcc-4.7.patch
blob767f78906993ccc76d6ae6e781bc5225b1a33e7c
1 Really fixes gcc-4.7 related compile error:
2 ../../include/beecrypt/c++/util/AbstractSet.h:59:27: error: 'containsAll' was not declared in this scope, and no declarations were found by argument-dependent lookup at the point of instantiation [-fpermissive]
4 Downloaded from upstream bugtracker:
5 http://sourceforge.net/p/beecrypt/patches/10/
7 Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
9 --- a/include/beecrypt/c++/util/AbstractSet.h
10 +++ b/include/beecrypt/c++/util/AbstractSet.h
11 @@ -56,7 +56,7 @@
12 if (c->size() != size())
13 return false;
15 - return containsAll(*c);
16 + return this->containsAll(*c);
18 return false;