1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-06-14 01:06:51 +00:00

clang-tidy : change '1u' to '1U'

This commit is contained in:
Jim Melton 2021-02-16 00:34:49 -07:00
parent e5bcf4700c
commit ec7b4cc537
No known key found for this signature in database
GPG Key ID: C46392D9AACAB216

View File

@ -41,6 +41,6 @@ size_t SignalSourceBase::getRfChannels() const
}
SignalSourceBase::SignalSourceBase(ConfigurationInterface const* configuration, std::string role, std::string impl)
: role_(std::move(role)), implementation_(std::move(impl)), rfChannels_(configuration->property(role + ".RF_channels"s, 1u))
: role_(std::move(role)), implementation_(std::move(impl)), rfChannels_(configuration->property(role + ".RF_channels"s, 1U))
{
}