From ba08b4b5a0ff0d87a4759140a0030b95a9127bbb Mon Sep 17 00:00:00 2001 From: Vladimir Byko-Ianko Date: Wed, 10 Jun 2020 16:22:48 +0300 Subject: [PATCH] [openlr] Setting US locale to be able to parse double independently from locale. --- openlr/openlr_stat/openlr_stat.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/openlr/openlr_stat/openlr_stat.cpp b/openlr/openlr_stat/openlr_stat.cpp index 986d3dd4a5..df0a7b37f0 100644 --- a/openlr/openlr_stat/openlr_stat.cpp +++ b/openlr/openlr_stat/openlr_stat.cpp @@ -19,6 +19,7 @@ #include "base/stl_helpers.hpp" #include +#include #include #include #include @@ -271,6 +272,7 @@ int main(int argc, char * argv[]) exit(-1); } + std::setlocale(LC_ALL, "en_US.UTF-8"); auto const segments = LoadSegments(document); std::vector paths(segments.size());