1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-09-05 04:17:58 +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

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