mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-11-17 15:47:15 +00:00
clang-tidy: apply checks
This commit is contained in:
@@ -48,10 +48,10 @@ RtlTcpSignalSource::RtlTcpSignalSource(ConfigurationInterface* configuration,
|
||||
const std::string& role,
|
||||
unsigned int in_stream,
|
||||
unsigned int out_stream,
|
||||
boost::shared_ptr<gr::msg_queue> queue) : role_(role),
|
||||
boost::shared_ptr<gr::msg_queue> queue) : role_(std::move(role)),
|
||||
in_stream_(in_stream),
|
||||
out_stream_(out_stream),
|
||||
queue_(std::move(std::move(queue)))
|
||||
queue_(std::move(queue))
|
||||
{
|
||||
// DUMP PARAMETERS
|
||||
std::string empty = "";
|
||||
|
||||
@@ -90,7 +90,7 @@ private:
|
||||
|
||||
// rtl_tcp settings
|
||||
std::string address_;
|
||||
short port_;
|
||||
int16_t port_;
|
||||
bool AGC_enabled_;
|
||||
double sample_rate_;
|
||||
bool flip_iq_;
|
||||
|
||||
Reference in New Issue
Block a user