llvm/llvm/tools/llvm-ifs/ErrorCollector.cpp

//===- ErrorCollector.cpp -------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===-----------------------------------------------------------------------===/

#include "ErrorCollector.h"
#include "llvm/Support/Errc.h"
#include "llvm/Support/Error.h"
#include "llvm/Support/WithColor.h"
#include "llvm/Support/raw_ostream.h"
#include <vector>

usingnamespacellvm;
usingnamespacellvm::ifs;

void ErrorCollector::escalateToFatal() {}

void ErrorCollector::addError(Error &&Err, StringRef Tag) {}

Error ErrorCollector::makeError() {}

void ErrorCollector::log(raw_ostream &OS) {}

bool ErrorCollector::allErrorsHandled() const {}

ErrorCollector::~ErrorCollector() {}

[[noreturn]] void ErrorCollector::fatalUnhandledError() {}