| 99 | } |
| 100 | |
| 101 | bool GetDouble(istringstream & lineStream, double & result) |
| 102 | { |
| 103 | string strResult; |
| 104 | if (!GetString(lineStream, strResult)) |
| 105 | return false; |
| 106 | return strings::to_double(strResult, result); |
| 107 | } |
| 108 | |
| 109 | bool GetUint64(istringstream & lineStream, uint64_t & result) |
| 110 | { |
no test coverage detected