1//===- llvm/Testing/Support/Error.cpp -------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#include "llvm/Testing/Support/Error.h"
10
11using namespace llvm;
12
13llvm::detail::ErrorHolder llvm::detail::TakeError(llvm::Error Err) {
14 std::vector<std::shared_ptr<ErrorInfoBase>> Infos;
15 handleAllErrors(E: std::move(Err),
16 Handlers: [&Infos](std::unique_ptr<ErrorInfoBase> Info) {
17 Infos.emplace_back(args: std::move(Info));
18 });
19 return {.Infos: std::move(Infos)};
20}
21

source code of llvm/lib/Testing/Support/Error.cpp