From c18f81605673c2bc77b734c7ad42c181f65a086b Mon Sep 17 00:00:00 2001 From: Matteo Bernardini Date: Sat, 9 Jun 2018 09:46:04 +0200 Subject: 20180609.1 global branch merge. Signed-off-by: Matteo Bernardini --- .../pokerth-1.1.1-boost-1.65-ambiguous-advance.patch | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 games/pokerth/pokerth-1.1.1-boost-1.65-ambiguous-advance.patch (limited to 'games/pokerth/pokerth-1.1.1-boost-1.65-ambiguous-advance.patch') 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(seatList->size()); + if (id < playerCount) { + PlayerListIterator pos = seatList->begin(); +- advance(pos, id); ++ std::advance(pos, id); + myStartWindow->getSession()->startVoteKickPlayer((*pos)->getMyUniqueID()); + } + } -- cgit v1.2.3