Remove redundant void (clang-tidy modernize-redundant-void-arg)

This commit is contained in:
Carles Fernandez 2020-08-27 12:48:20 +02:00
parent cd91722d2f
commit a9472dea30
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D
2 changed files with 5 additions and 5 deletions

View File

@ -604,7 +604,7 @@ void Ad9361FpgaSignalSource::run_DMA_process(const std::string &FreqBand, const
} }
void Ad9361FpgaSignalSource::run_dynamic_bit_selection_process(void) void Ad9361FpgaSignalSource::run_dynamic_bit_selection_process()
{ {
bool dynamic_bit_selection_active = true; bool dynamic_bit_selection_active = true;

View File

@ -74,7 +74,7 @@ private:
const std::string &Filename1, const std::string &Filename1,
const std::string &Filename2); const std::string &Filename2);
void run_dynamic_bit_selection_process(void); void run_dynamic_bit_selection_process();
std::thread thread_file_to_dma; std::thread thread_file_to_dma;
std::thread thread_dynamic_bit_selection; std::thread thread_dynamic_bit_selection;
@ -95,6 +95,9 @@ private:
std::string filename_rx2; std::string filename_rx2;
std::string freq_band; std::string freq_band;
std::mutex dma_mutex;
std::mutex dynamic_bit_selection_mutex;
double rf_gain_rx1_; double rf_gain_rx1_;
double rf_gain_rx2_; double rf_gain_rx2_;
uint64_t freq_; // frequency of local oscillator uint64_t freq_; // frequency of local oscillator
@ -125,9 +128,6 @@ private:
bool enable_DMA_; bool enable_DMA_;
bool enable_dynamic_bit_selection_; bool enable_dynamic_bit_selection_;
bool rf_shutdown_; bool rf_shutdown_;
std::mutex dma_mutex;
std::mutex dynamic_bit_selection_mutex;
}; };
#endif // GNSS_SDR_AD9361_FPGA_SIGNAL_SOURCE_H #endif // GNSS_SDR_AD9361_FPGA_SIGNAL_SOURCE_H