Everywhere: Write dtors for types with incomplete members out-of-line

These are rejected by Clang (19) trunk as a result of
https://github.com/llvm/llvm-project/pull/77753.
This commit is contained in:
Daniel Bertalan 2024-06-16 10:38:35 +02:00 committed by Tim Flynn
commit bf1f631f25
Notes: sideshowbarker 2024-07-16 23:34:49 +09:00
26 changed files with 42 additions and 9 deletions

View file

@ -24,6 +24,8 @@ CyclicModule::CyclicModule(Realm& realm, StringView filename, bool has_top_level
{
}
CyclicModule::~CyclicModule() = default;
void CyclicModule::visit_edges(Cell::Visitor& visitor)
{
Base::visit_edges(visitor);