Added namespace to common model instead of vector<string>

This commit is contained in:
Bartek Kryza
2022-02-27 14:20:35 +01:00
parent 57456705bd
commit bee20e7f26
6 changed files with 32 additions and 14 deletions

View File

@@ -40,7 +40,7 @@ std::string enum_::full_name(bool relative) const
std::ostringstream ostr;
if (relative)
ostr << ns_relative(using_namespaces(), name());
ostr << ns_relative(using_namespace(), name());
else
ostr << name();