1
0
mirror of https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git synced 2026-07-16 08:54:26 +00:00

Fixed third batch of locale-dependent calls

This commit is contained in:
Lukas Matena
2021-05-10 08:13:23 +02:00
parent fef385cd6b
commit c5c6f51ae0
11 changed files with 34 additions and 26 deletions
+4 -4
View File
@@ -66,10 +66,10 @@ std::string float_to_string_decimal_point(double value, int precision/* = -1*/)
return buf.str();
}
std::string float_to_string_decimal_point(float value, int precision/* = -1*/)
{
return float_to_string_decimal_point(double(value), precision);
}
//std::string float_to_string_decimal_point(float value, int precision/* = -1*/)
//{
// return float_to_string_decimal_point(double(value), precision);
//}
} // namespace Slic3r