Fixed instantiation of function template params with different namespaces

This commit is contained in:
Bartek Kryza
2021-09-02 22:15:22 +02:00
parent bf6210a602
commit ba978221c7
6 changed files with 93 additions and 35 deletions

View File

@@ -334,7 +334,7 @@ struct diagram {
if (!has_class(c.usr))
classes.emplace_back(std::move(c));
else
LOG_DBG("Class {} already in the model", c.name);
LOG_DBG("Class {} ({}) already in the model", c.name, c.usr);
}
void add_enum(enum_ &&e)