Workaround for failing distance tests

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2024-08-09 09:06:58 +02:00
parent eacaec0cf9
commit 48f2a99671

View file

@ -4,11 +4,23 @@
#include "platform/measurement_utils.hpp"
#include "platform/settings.hpp"
#include <algorithm>
namespace platform
{
std::string MakeDistanceStr(std::string const & value, std::string const & unit)
std::string MakeDistanceStr(std::string value, std::string const & unit)
{
return value + kNarrowNonBreakingSpace + unit;
static Locale const loc = GetCurrentLocale();
constexpr char kHardCodedGroupingSeparator = ',';
if (auto found = value.find(kHardCodedGroupingSeparator); found != std::string::npos)
value.replace(found, 1, loc.m_groupingSeparator);
constexpr char kHardCodedDecimalSeparator = '.';
if (auto found = value.find(kHardCodedDecimalSeparator); found != std::string::npos)
value.replace(found, 1, loc.m_decimalSeparator);
return value.append(kNarrowNonBreakingSpace).append(unit);
}
struct ScopedSettings