24 double value = std::stod(s_value);
25 if (std::ceil(value) == value && s_value.find_first_of(
"eE") == std::string::npos) {
26 return fmt::format(
"{:.1f}", value);
33 float value = std::stof(s_value);
34 if (std::ceil(value) == value && s_value.find_first_of(
"eE") == std::string::npos) {
35 return fmt::format(
"{:.1f}", value);