| 62 | template std::string floatingPointToStr<double>( double value, int precision ); |
| 63 | |
| 64 | double strToDouble( const std::string &inStr ) |
| 65 | { |
| 66 | std::istringstream iss{ inStr }; |
| 67 | iss.imbue( std::locale::classic() ); |
| 68 | double res = 0.; |
| 69 | iss >> res; |
| 70 | return res; |
| 71 | } |
| 72 | |
| 73 | } |
no outgoing calls
no test coverage detected