| 134 | } |
| 135 | |
| 136 | Error createStringError(std::error_code EC, char const *Msg) { |
| 137 | return make_error<StringError>(Msg, EC); |
| 138 | } |
| 139 | |
| 140 | void report_fatal_error(Error Err, bool GenCrashDiag) { |
| 141 | assert(Err && "report_fatal_error called with success value"); |
no outgoing calls