mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-11-10 20:10:05 +00:00
Fixed clang format
This commit is contained in:
parent
fdc4e4078e
commit
c9277539ff
@ -32,7 +32,7 @@ Monitor_Pvt_Udp_Sink::Monitor_Pvt_Udp_Sink(
|
||||
{
|
||||
for (const auto& port : ports)
|
||||
{
|
||||
boost::asio::ip::udp::endpoint endpoint(boost::asio::ip::address::from_string(address, error), boost::lexical_cast<int> (port));
|
||||
boost::asio::ip::udp::endpoint endpoint(boost::asio::ip::address::from_string(address, error), boost::lexical_cast<int>(port));
|
||||
endpoints.push_back(endpoint);
|
||||
}
|
||||
}
|
||||
|
@ -17,8 +17,8 @@
|
||||
|
||||
#include "gnss_synchro_udp_sink.h"
|
||||
#include <boost/archive/binary_oarchive.hpp>
|
||||
#include <boost/serialization/vector.hpp>
|
||||
#include <boost/lexical_cast.hpp>
|
||||
#include <boost/serialization/vector.hpp>
|
||||
#include <iostream>
|
||||
#include <sstream>
|
||||
|
||||
@ -39,7 +39,7 @@ Gnss_Synchro_Udp_Sink::Gnss_Synchro_Udp_Sink(
|
||||
{
|
||||
boost::asio::ip::udp::endpoint endpoint(
|
||||
boost::asio::ip::address::from_string(address, error),
|
||||
boost::lexical_cast<int> (port));
|
||||
boost::lexical_cast<int>(port));
|
||||
endpoints.push_back(endpoint);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user