| 119 | } |
| 120 | |
| 121 | double fpValue(const string& val) |
| 122 | { |
| 123 | double rval; |
| 124 | std::stringstream ss(val); |
| 125 | ss.imbue(std::locale("C")); |
| 126 | ss >> rval; |
| 127 | return rval; |
| 128 | } |
| 129 | |
| 130 | double fpValueCheck(const string& val) |
| 131 | { |
no outgoing calls
no test coverage detected