blob: d60eb804a861bcf222235a0313da2a7024f322cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
echo 'Creating brew-patch.diff'
cat << EOF >> brew-patch.diff
--- include/beecrypt/c++/util/AbstractSet.h~ 2009-06-17 13:05:55.000000000 +0200
+++ include/beecrypt/c++/util/AbstractSet.h 2012-06-03 17:45:55.229399461 +0200
@@ -56,7 +56,7 @@
if (c->size() != size())
return false;
- return containsAll(*c);
+ return this->containsAll(*c);
}
return false;
}
EOF
|