You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/games-puzzle/brainparty/files/brainparty-0.61-gcc-11.patch

15 lines
314 B

gcc-11 needs const operator()
https://bugs.gentoo.org/768204
--- a/BPGame.h
+++ b/BPGame.h
@@ -53,7 +53,7 @@ class BPMiniGame;
class SpriteFont;
struct cmp_str {
- bool operator()(char const *a, char const *b) {
+ bool operator()(char const *a, char const *b) const {
return std::strcmp(a, b) < 0;
}
};