mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
7d235f4fd0
Also do some basic cleanup: capitalize first letters, add `.` at the end of the sentences, and so on.
23 lines
549 B
C++
23 lines
549 B
C++
/// \file Context.cpp
|
|
/// The pipeline context the place where all objects used by more that one
|
|
/// pipeline or container are stored.
|
|
|
|
//
|
|
// This file is distributed under the MIT License. See LICENSE.md for details.
|
|
//
|
|
|
|
#include <cstdlib>
|
|
|
|
#include "llvm/ADT/StringRef.h"
|
|
|
|
#include "revng/Pipeline/AllRegistries.h"
|
|
#include "revng/Pipeline/Context.h"
|
|
|
|
using namespace pipeline;
|
|
|
|
Logger<> pipeline::ExplanationLogger("pipeline");
|
|
Logger<> pipeline::CommandLogger("commands");
|
|
|
|
Context::Context() : TheKindRegistry(Registry::registerAllKinds()) {
|
|
}
|