Files
revng-revng/lib/Pipeline/Context.cpp
Ivan Krysak 7d235f4fd0 Enforce licence header consistency
Also do some basic cleanup: capitalize first letters, add `.`
at the end of the sentences, and so on.
2023-07-03 15:23:10 +00:00

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()) {
}