1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-12-14 12:10:34 +00:00

Remove using directive

This commit is contained in:
Carles Fernandez 2022-06-29 00:07:51 +02:00
parent 7c854cdfe7
commit 342d378fe3
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D

View File

@ -25,7 +25,6 @@
namespace ip = boost::asio::ip;
using boost::asio::ip::tcp;
// Buffer constants
// TODO: Make these configurable
@ -110,7 +109,7 @@ rtl_tcp_signal_source_c::rtl_tcp_signal_source_c(const std::string &address,
LOG(INFO) << "Connected to " << addr << ":" << port;
// 4. Set nodelay
socket_.set_option(tcp::no_delay(true), ec);
socket_.set_option(ip::tcp::no_delay(true), ec);
if (ec)
{
std::cout << "Failed to set no delay option.\n";