From de7ab2eb1c8bd5695a3ffa4390b9fd46d34d9d71 Mon Sep 17 00:00:00 2001 From: Patric Stout Date: Sat, 8 May 2021 10:57:10 +0200 Subject: Cleanup: remove unused optional ctor parameter for NetworkGameList --- src/network/network_gamelist.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src') diff --git a/src/network/network_gamelist.h b/src/network/network_gamelist.h index 7fdd37c66..9a98207d9 100644 --- a/src/network/network_gamelist.h +++ b/src/network/network_gamelist.h @@ -16,10 +16,7 @@ /** Structure with information shown in the game list (GUI) */ struct NetworkGameList { - NetworkGameList(const std::string &connection_string, bool manually = false) : - connection_string(connection_string), manually(manually) - { - } + NetworkGameList(const std::string &connection_string) : connection_string(connection_string) {} NetworkGameInfo info = {}; ///< The game information of this server std::string connection_string; ///< Address of the server -- cgit v1.2.3-54-g00ecf