Searched refs:ErrorAdapter (Results 1 - 1 of 1) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DFormatAdapters.h75 class ErrorAdapter : public FormatAdapter<Error> { class in namespace:llvm::detail
77 ErrorAdapter(Error &&Item) : FormatAdapter(std::move(Item)) {} function in class:llvm::detail::ErrorAdapter
78 ErrorAdapter(ErrorAdapter &&) = default;
79 ~ErrorAdapter() { consumeError(std::move(Item)); }
103 inline detail::ErrorAdapter fmt_consume(Error &&Item) {
104 return detail::ErrorAdapter(std::move(Item));

Completed in 51 milliseconds