1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-06-24 05:53:16 +00:00

another MacOS property ambiguity ... ARRRGGGHHH

This commit is contained in:
Jim Melton 2021-02-17 13:40:04 -07:00
parent c221fd1c87
commit 704b99e633
No known key found for this signature in database
GPG Key ID: C46392D9AACAB216

View File

@ -42,5 +42,5 @@ SignalSourceBase::SignalSourceBase(ConfigurationInterface const* configuration,
{
// because clang-tidy insists on using std::move for the string arguments, and to avoid
// depending on the order of initialization, assign rfChannels_ in the body
rfChannels_ = configuration->property(role_ + ".RF_channels"s, 1U);
rfChannels_ = configuration->property(role_ + ".RF_channels"s, uint64_t(1U));
}