| 16517 | #if TOML_ENABLE_PARSER && !TOML_EXCEPTIONS |
| 16518 | |
| 16519 | TOML_EXTERNAL_LINKAGE |
| 16520 | bool formatter::dump_failed_parse_result() |
| 16521 | { |
| 16522 | if (result_ && !(*result_)) |
| 16523 | { |
| 16524 | stream() << result_->error(); |
| 16525 | return true; |
| 16526 | } |
| 16527 | return false; |
| 16528 | } |
| 16529 | |
| 16530 | #else |
| 16531 |
nothing calls this directly
no outgoing calls
no test coverage detected