Files
revng-revng/tests/unit/ModelType.cpp
T
2024-05-29 15:42:15 +02:00

24 lines
575 B
C++

//
// This file is distributed under the MIT License. See LICENSE.md for details.
//
#include "revng/Model/Binary.h"
static bool verify(const model::Type &ModelType, const bool Assert) {
return ModelType.verify(Assert);
}
static bool verify(const model::QualifiedType &ModelType, const bool Assert) {
return ModelType.verify(Assert);
}
static bool verify(const model::Binary &Tree, const bool Assert) {
return Tree.verify(Assert);
}
static bool checkSerialization(const TupleTree<model::Binary> &Tree) {
return true;
}
#include "revng/tests/unit/ModelType.inc"