We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 365b8db commit b2cc4abCopy full SHA for b2cc4ab
src/Generator/Passes/ResolveIncompleteDeclsPass.cs
@@ -38,6 +38,7 @@ public override bool VisitClassTemplateDecl(ClassTemplate template)
38
if (parentSpecialization != null)
39
templatedClass = parentSpecialization.TemplatedDecl.TemplatedClass.Classes.FirstOrDefault(
40
c => c.OriginalName == template.OriginalName) ?? template.TemplatedClass;
41
+ template.TemplatedDecl = templatedClass;
42
// store all specializations in the real template class because ClassTemplateDecl only forwards
43
foreach (var specialization in template.Specializations.Where(
44
s => !templatedClass.Specializations.Contains(s)))
0 commit comments