mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-11-01 18:00:06 +00:00
GCC doesn't implement <format> yet, use fmt
This commit is contained in:
parent
593010acc2
commit
31db9a4315
12 changed files with 27 additions and 28 deletions
|
|
@ -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_));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue