| 199 | } |
| 200 | |
| 201 | bool parseFloat(StringSpan token, float& value) |
| 202 | { |
| 203 | char buffer[64]; |
| 204 | SC_TRY(copyTokenToBuffer(token, buffer)); |
| 205 | char* end = nullptr; |
| 206 | value = ::strtof(buffer, &end); |
| 207 | return buffer < end; |
| 208 | } |
| 209 | |
| 210 | bool appendFormatted(SerializationTextOutput& output, const char* format, int value) |
| 211 | { |
no test coverage detected