summaryrefslogtreecommitdiffstats
path: root/games/pokerth/pokerth-1.1.1-boost-1.65-ambiguous-advance.patch
diff options
context:
space:
mode:
author Matteo Bernardini2018-05-20 18:38:36 +0200
committer Matteo Bernardini2018-05-20 18:38:36 +0200
commita824dbc05057a7ebee9d6e389b1a9d94b2526841 (patch)
treeb0a684ea03270d3921e4255b015e39dab4786073 /games/pokerth/pokerth-1.1.1-boost-1.65-ambiguous-advance.patch
parent3e13c69615265f8bb16da751be07dd649bd89c79 (diff)
downloadold.slackbuilds-a824dbc05057a7ebee9d6e389b1a9d94b2526841.tar.gz
20180520.1 global branch merge.current-20180520.1
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'games/pokerth/pokerth-1.1.1-boost-1.65-ambiguous-advance.patch')
-rw-r--r--games/pokerth/pokerth-1.1.1-boost-1.65-ambiguous-advance.patch14
1 files changed, 14 insertions, 0 deletions
diff --git a/games/pokerth/pokerth-1.1.1-boost-1.65-ambiguous-advance.patch b/games/pokerth/pokerth-1.1.1-boost-1.65-ambiguous-advance.patch
new file mode 100644
index 0000000000..2e8c9c50c5
--- /dev/null
+++ b/games/pokerth/pokerth-1.1.1-boost-1.65-ambiguous-advance.patch
@@ -0,0 +1,14 @@
+Boost 1.65 made 'advance()' ambiguous.
+Bug: https://bugs.gentoo.org/show_bug.cgi?id=629966
+
+--- a/src/gui/qt/gametable/gametableimpl.cpp
++++ b/src/gui/qt/gametable/gametableimpl.cpp
+@@ -3859,7 +3859,7 @@
+ int playerCount = static_cast<int>(seatList->size());
+ if (id < playerCount) {
+ PlayerListIterator pos = seatList->begin();
+- advance(pos, id);
++ std::advance(pos, id);
+ myStartWindow->getSession()->startVoteKickPlayer((*pos)->getMyUniqueID());
+ }
+ }