| 176 | } |
| 177 | |
| 178 | std::optional<uint32_t> TextParser::parseUInt() { |
| 179 | uint32_t i; |
| 180 | |
| 181 | if (!parseUInt(i)) { |
| 182 | return std::nullopt; |
| 183 | } |
| 184 | |
| 185 | return i; |
| 186 | } |
| 187 | |
| 188 | std::optional<long long> TextParser::parseHexLong() { |
| 189 | long long l; |
no test coverage detected