mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-08-31 18:08:00 +00:00
fix -Wreorder warning
The members should appear in the initializer list in the same order as they appear in the class
This commit is contained in:
@@ -455,6 +455,7 @@ private:
|
||||
}
|
||||
|
||||
private:
|
||||
|
||||
void do_accept()
|
||||
{
|
||||
acceptor_.async_accept(socket_, [this](boost::system::error_code ec)
|
||||
@@ -475,8 +476,8 @@ private:
|
||||
}
|
||||
|
||||
boost::asio::ip::tcp::acceptor acceptor_;
|
||||
boost::asio::ip::tcp::socket socket_;
|
||||
std::shared_ptr< concurrent_queue<std::string> > & queue_;
|
||||
boost::asio::ip::tcp::socket socket_;
|
||||
};
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user