]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
fix : local float print separator in export ROOT
authorNicolas RECHATIN <nicolas.rechatin@cea.fr>
Wed, 18 Oct 2023 15:29:42 +0000 (17:29 +0200)
committerNicolas RECHATIN <nicolas.rechatin@cea.fr>
Wed, 18 Oct 2023 15:29:42 +0000 (17:29 +0200)
src/GeomAlgoAPI/GeomAlgoAPI_ROOTExport.cpp

index 3590dfaa9e36ba7121a43000e29759abfac9d319..bbb803849555a9e7615d5da6ace3a749d39b696b 100644 (file)
 #include <sstream>
 #include "math.h"
 
+
+
 //=================================================================================================
 static std::string doubleToString(const double &theValue)
 {
+    std::locale::global(std::locale("C"));
     std::ostringstream str;
     str << theValue;
     return str.str();