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 f5a46b8 commit 8683546Copy full SHA for 8683546
src/Generator/Passes/SymbolsCodeGenerator.cs
@@ -312,9 +312,9 @@ private IEnumerable<string> GetTemplateArguments(
312
switch (a.Kind)
313
{
314
case TemplateArgument.ArgumentKind.Type:
315
- return a.Type.Visit(cppTypePrinter).Type;
+ return a.Type.Visit(cppTypePrinter).ToString();
316
case TemplateArgument.ArgumentKind.Declaration:
317
- return a.Declaration.Visit(cppTypePrinter).Type;
+ return a.Declaration.Visit(cppTypePrinter).ToString();
318
case TemplateArgument.ArgumentKind.Integral:
319
return a.Integral.ToString(CultureInfo.InvariantCulture);
320
}
0 commit comments