summaryrefslogtreecommitdiff
path: root/games-board/pokerth/files/pokerth-1.1.1-boost-1.65-ambiguous-advance.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:58:29 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:58:29 +0100
commit0cf2f20608308acdf3cb922c3736446bbd8f3388 (patch)
tree07815070629c7c11000a7f51ceb8ccbccb49a809 /games-board/pokerth/files/pokerth-1.1.1-boost-1.65-ambiguous-advance.patch
parent1798c4aeca70ac8d0a243684d6a798fbc65735f8 (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'games-board/pokerth/files/pokerth-1.1.1-boost-1.65-ambiguous-advance.patch')
-rw-r--r--games-board/pokerth/files/pokerth-1.1.1-boost-1.65-ambiguous-advance.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/games-board/pokerth/files/pokerth-1.1.1-boost-1.65-ambiguous-advance.patch b/games-board/pokerth/files/pokerth-1.1.1-boost-1.65-ambiguous-advance.patch
deleted file mode 100644
index 2e8c9c50c5eb..000000000000
--- a/games-board/pokerth/files/pokerth-1.1.1-boost-1.65-ambiguous-advance.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-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());
- }
- }