File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/Generator/Generators/C Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -590,12 +590,12 @@ public override TypePrinterResult VisitNonTypeTemplateParameterDecl(
590
590
591
591
public override TypePrinterResult VisitTypedefNameDecl ( TypedefNameDecl typedef )
592
592
{
593
- throw new NotImplementedException ( ) ;
593
+ return VisitDeclaration ( typedef ) ;
594
594
}
595
595
596
596
public override TypePrinterResult VisitTypeAliasTemplateDecl ( TypeAliasTemplate typeAliasTemplate )
597
597
{
598
- throw new NotImplementedException ( ) ;
598
+ return VisitDeclaration ( typeAliasTemplate ) ;
599
599
}
600
600
601
601
public override TypePrinterResult VisitFunctionTemplateSpecializationDecl (
@@ -612,7 +612,7 @@ public override TypePrinterResult VisitVarTemplateDecl(VarTemplate template)
612
612
public override TypePrinterResult VisitVarTemplateSpecializationDecl (
613
613
VarTemplateSpecialization template )
614
614
{
615
- throw new NotImplementedException ( ) ;
615
+ return VisitDeclaration ( template ) ;
616
616
}
617
617
618
618
private string GetStringQuals ( TypeQualifiers quals , bool appendSpace = true )
You can’t perform that action at this time.
0 commit comments