Skip to content

Commit 8d00cec

Browse files
committed
Fixed the support for std::string which had regressed.
Signed-off-by: Dimitar Dobrev <dpldobrev@protonmail.com>
1 parent 7daf556 commit 8d00cec

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/Generator/Generators/CSharp/CSharpSources.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -414,11 +414,6 @@ public override bool VisitClassDecl(Class @class)
414414
return true;
415415
}
416416

417-
var specialization = @class as ClassTemplateSpecialization;
418-
if (specialization != null && specialization.SpecializationKind ==
419-
TemplateSpecializationKind.ExplicitInstantiationDeclaration)
420-
return true;
421-
422417
foreach (var nestedTemplate in @class.Classes.Where(c => !c.IsIncomplete && c.IsDependent))
423418
GenerateClassTemplateSpecializationInternal(nestedTemplate);
424419

0 commit comments

Comments
 (0)