| 72 | } |
| 73 | |
| 74 | std::string FloatToStr( const float f ) |
| 75 | { |
| 76 | // HACK - replace ',' to '.' for bad locale |
| 77 | std::string result= std::to_string( f ); |
| 78 | size_t pos = result.find(","); |
| 79 | if ( pos != std::string::npos ) result[pos] = '.'; |
| 80 | |
| 81 | return result; |
| 82 | } |
| 83 | |
| 84 | static std::string MakeQuotedString( const std::string& str ) |
| 85 | { |
no outgoing calls
no test coverage detected