| 332 | } |
| 333 | |
| 334 | bool ParseBool(TStringBuf value) |
| 335 | { |
| 336 | bool result; |
| 337 | if (!TryParseBool(value, &result)) { |
| 338 | throw TSimpleException(Format("Error parsing boolean value %Qv", |
| 339 | value)); |
| 340 | } |
| 341 | return result; |
| 342 | } |
| 343 | |
| 344 | TStringBuf FormatBool(bool value) |
| 345 | { |
nothing calls this directly
no test coverage detected