mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-12-14 04:00:34 +00:00
fix clang-tidy CI issues
This commit is contained in:
parent
4a88479972
commit
fb6fef74e3
@ -47,17 +47,19 @@ class SignalSourceInterface : public GNSSBlockInterface
|
||||
{
|
||||
public:
|
||||
virtual size_t getRfChannels() const = 0;
|
||||
protected:
|
||||
SignalSourceInterface() {
|
||||
VLOG(1) << "SignalSourceInterface: " << this << " ctor";
|
||||
|
||||
protected:
|
||||
SignalSourceInterface()
|
||||
{
|
||||
VLOG(1) << "SignalSourceInterface: " << this << " ctor";
|
||||
}
|
||||
public: // required for polymorphic destruction
|
||||
~SignalSourceInterface() {
|
||||
VLOG(1) << "SignalSourceInterface: " << this << " dtor";
|
||||
|
||||
public: // required for polymorphic destruction
|
||||
~SignalSourceInterface()
|
||||
{
|
||||
VLOG(1) << "SignalSourceInterface: " << this << " dtor";
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
|
||||
#endif
|
||||
|
||||
|
@ -231,7 +231,7 @@ std::unique_ptr<GNSSBlockInterface> GNSSBlockFactory::GetSignalConditioner(
|
||||
auto role_resampler = findRole(configuration, "Resampler"s, ID);
|
||||
|
||||
DLOG(INFO) << "role: " << role_conditioner << " (ID=" << ID << ")";
|
||||
|
||||
|
||||
const std::string signal_conditioner = configuration->property(role_conditioner + impl_prop, ""s);
|
||||
|
||||
const std::string data_type_adapter = configuration->property(role_datatypeadapter + impl_prop, ""s);
|
||||
|
Loading…
Reference in New Issue
Block a user