Added initial Doxygen config

This commit is contained in:
Bartek Kryza
2023-06-18 01:18:14 +02:00
parent 031235bf49
commit da2cb63ab3
51 changed files with 4330 additions and 158 deletions

View File

@@ -1809,7 +1809,11 @@ void translation_unit_visitor::process_template_specialization_argument(
// Otherwise just set the name for the template argument to
// whatever clang says
argument.set_name(type_name);
if (template_params.size() > argument_index &&
template_params[argument_index].type())
argument.set_type(type_name);
else
argument.set_name(type_name);
}
else
argument.set_type(type_name);