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
1 changed files with 1 additions and 1 deletions

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))
{
}