Files
revng-revng/lib/Model/Visits.cpp
Giacomo Vercesi d2967d2a49 Tuple Tree Generator: remove Model headers
This commit removes the inclusion of the `Binary.h` header in
Tuple-Tree Generator files, allowing Model-independent Tuple Trees to be
generated.
2023-09-14 15:44:32 +02:00

21 lines
672 B
C++

/// \file Visits.cpp
//
// This file is distributed under the MIT License. See LICENSE.md for details.
//
#include "revng/Model/Binary.h"
#include "revng/TupleTree/VisitsImpl.h"
template const model::Type *
getByPath<const model::Type, const model::Binary>(const TupleTreePath &Path,
const model::Binary &M);
template model::Type *
getByPath<model::Type, const model::Binary>(const TupleTreePath &Path,
const model::Binary &M);
template model::Type *
getByPath<model::Type, model::Binary>(const TupleTreePath &Path,
model::Binary &M);