summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>2020-05-09 19:49:36 +0200
committerJames Le Cuirot <chewi@gentoo.org>2020-05-09 21:07:23 +0100
commitd45feeaeec9e47c8d1feca7778a9cb30d0bac763 (patch)
tree776d32d0f0c6c0682b2f9b3a7c13d6f5f30cc975 /games-strategy/wesnoth
parentgames-emulation/snes9x: remove unused patches (diff)
downloadgentoo-d45feeaeec9e47c8d1feca7778a9cb30d0bac763.tar.gz
gentoo-d45feeaeec9e47c8d1feca7778a9cb30d0bac763.tar.bz2
gentoo-d45feeaeec9e47c8d1feca7778a9cb30d0bac763.zip
games-strategy/wesnoth: remove unused patch
Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/15731 Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'games-strategy/wesnoth')
-rw-r--r--games-strategy/wesnoth/files/wesnoth-1.14.7-boost-1.70.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/games-strategy/wesnoth/files/wesnoth-1.14.7-boost-1.70.patch b/games-strategy/wesnoth/files/wesnoth-1.14.7-boost-1.70.patch
deleted file mode 100644
index 90c526789c51..000000000000
--- a/games-strategy/wesnoth/files/wesnoth-1.14.7-boost-1.70.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-From 9d0e3bae096563297c9f51355968f27a67dbfdec Mon Sep 17 00:00:00 2001
-From: Charles Dang <exodia339@gmail.com>
-Date: Mon, 15 Jul 2019 03:18:31 +1100
-Subject: [PATCH] Removed redundant std::ref causing problems with Boost 1.70
- (fixes #3990)
-
-The asio socket ctor already takes a reference.
----
- src/server/server_base.cpp | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/server/server_base.cpp b/src/server/server_base.cpp
-index 82b46e912025..8bcf974a62d1 100644
---- a/src/server/server_base.cpp
-+++ b/src/server/server_base.cpp
-@@ -65,7 +65,7 @@ void server_base::start_server()
-
- void server_base::serve()
- {
-- socket_ptr socket = std::make_shared<boost::asio::ip::tcp::socket>(std::ref(io_service_));
-+ socket_ptr socket = std::make_shared<boost::asio::ip::tcp::socket>(io_service_);
- acceptor_.async_accept(*socket, std::bind(&server_base::accept_connection, this, _1, socket));
- }
-