mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-08-18 07:32:01 -06:00
Fixed third batch of locale-dependent calls
This commit is contained in:
parent
fef385cd6b
commit
c5c6f51ae0
11 changed files with 34 additions and 26 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue