GCC doesn't implement <format> yet, use fmt

This commit is contained in:
Dan Paulat 2023-04-17 18:24:50 -05:00
parent 593010acc2
commit 31db9a4315
12 changed files with 27 additions and 28 deletions

View file

@ -254,14 +254,14 @@ std::string ProviderManager::name() const
if (group_ == common::RadarProductGroup::Level3)
{
name = std::format("{}, {}, {}",
name = fmt::format("{}, {}, {}",
radarId_,
common::GetRadarProductGroupName(group_),
product_);
}
else
{
name = std::format(
name = fmt::format(
"{}, {}", radarId_, common::GetRadarProductGroupName(group_));
}