Fixed handling of template class specializations nested in other classes

This commit is contained in:
Bartek Kryza
2023-03-04 15:02:35 +01:00
parent d4d749ae34
commit a58b633d01
5 changed files with 71 additions and 11 deletions

View File

@@ -46,8 +46,8 @@ void diagram_element::add_relationship(relationship &&cr)
return;
}
LOG_DBG("Adding relationship: '{}' - {} - '{}'", cr.destination(),
to_string(cr.type()), full_name(true));
LOG_DBG("Adding relationship from: '{}' ({}) - {} - '{}'", id(),
full_name(true), to_string(cr.type()), cr.destination());
if (!util::contains(relationships_, cr))
relationships_.emplace_back(std::move(cr));