1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-11-10 20:10:05 +00:00

Fix clang-tidy job

This commit is contained in:
Carles Fernandez 2024-08-08 17:53:59 +02:00
parent 8fea8e1729
commit 621ee34048
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D

View File

@ -46,11 +46,11 @@ gnss_synchro_monitor::gnss_synchro_monitor(int n_channels,
: gr::block("gnss_synchro_monitor", : gr::block("gnss_synchro_monitor",
gr::io_signature::make(n_channels, n_channels, sizeof(Gnss_Synchro)), gr::io_signature::make(n_channels, n_channels, sizeof(Gnss_Synchro)),
gr::io_signature::make(0, 0, 0)), gr::io_signature::make(0, 0, 0)),
count(0),
d_nchannels(n_channels), d_nchannels(n_channels),
d_decimation_factor(decimation_factor) d_decimation_factor(decimation_factor)
{ {
udp_sink_ptr = std::make_unique<Gnss_Synchro_Udp_Sink>(udp_addresses, udp_port, enable_protobuf); udp_sink_ptr = std::make_unique<Gnss_Synchro_Udp_Sink>(udp_addresses, udp_port, enable_protobuf);
count = 0;
} }