mirror of
https://github.com/badaix/snapcast.git
synced 2025-08-06 01:58:42 +02:00
Fix warnings
This commit is contained in:
parent
f6b1e3f5d4
commit
6f03576270
16 changed files with 33 additions and 23 deletions
|
@ -46,8 +46,8 @@ static constexpr auto LOG_TAG = "Server";
|
|||
|
||||
|
||||
|
||||
Server::Server(boost::asio::io_context& io_context, const ServerSettings& serverSettings)
|
||||
: io_context_(io_context), config_timer_(io_context), settings_(serverSettings), request_factory_(*this)
|
||||
Server::Server(boost::asio::io_context& io_context, ServerSettings serverSettings)
|
||||
: io_context_(io_context), config_timer_(io_context), settings_(std::move(serverSettings)), request_factory_(*this)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue