mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-11-20 00:55:17 +00:00
Introduce readability-identifier-naming check
This commit enforces naming style for Classes and global constants: Camel_Snake_Case for Classes UPPER_CASE for global constants CamelCase for abstract classes
This commit is contained in:
@@ -222,7 +222,7 @@ void rtl_tcp_signal_source_c::set_if_gain(int gain)
|
||||
{
|
||||
double start, stop, step;
|
||||
};
|
||||
if (info_.get_tuner_type() != rtl_tcp_dongle_info::TUNER_E4000)
|
||||
if (info_.get_tuner_type() != Rtl_Tcp_Dongle_Info::TUNER_E4000)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -88,7 +88,7 @@ private:
|
||||
int16_t port,
|
||||
bool flip_iq);
|
||||
|
||||
rtl_tcp_dongle_info info_;
|
||||
Rtl_Tcp_Dongle_Info info_;
|
||||
|
||||
// IO members
|
||||
boost::asio::io_service io_service_;
|
||||
|
||||
Reference in New Issue
Block a user