Added rendering of template specialization members
This commit is contained in:
@@ -206,10 +206,14 @@ bool translation_unit_visitor::VisitClassTemplateSpecializationDecl(
|
||||
process_template_specialization_children(cls, template_specialization);
|
||||
}
|
||||
|
||||
if (cls->hasDefinition())
|
||||
if (cls->hasDefinition()) {
|
||||
// Process template specialization bases
|
||||
process_class_bases(cls, template_specialization);
|
||||
|
||||
// Process class child entities
|
||||
process_class_children(cls, template_specialization);
|
||||
}
|
||||
|
||||
if (!template_specialization.template_specialization_found()) {
|
||||
// Only do this if we haven't found a bettern specialization during
|
||||
// construction of the template specialization
|
||||
|
||||
Reference in New Issue
Block a user