Refactored class visitor main method

This commit is contained in:
Bartek Kryza
2022-02-23 10:57:39 +01:00
parent 1a5a7aefcb
commit d2bd58cede
4 changed files with 341 additions and 265 deletions

View File

@@ -102,7 +102,7 @@ std::string class_::full_name(bool relative) const
std::ostringstream ostr;
if (relative && starts_with(get_namespace(), using_namespaces()))
ostr << ns_relative(using_namespaces(), name());
ostr << ns_relative(using_namespaces(), name_and_ns());
else
ostr << name_and_ns();