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 c2cbfe5 commit a78f00fCopy full SHA for a78f00f
src/CppAst/CppModelBuilder.cs
@@ -75,7 +75,7 @@ private CppType TryToCreateTemplateParameters(CXCursor cursor, void* data)
75
case CXCursorKind.CXCursor_TemplateTemplateParameter:
76
{
77
//ToDo: add template template parameter support here~~
78
- Debug.WriteLine("[Warning] template template parameter maybe not handle right here!");
+ RootCompilation.Diagnostics.Warning($"Unhandled template parameter: {cursor.Kind}/{CXUtil.GetCursorSpelling(cursor)}", GetSourceLocation(cursor.Location));
79
var tmplparam = new CppTemplateParameterType(CXUtil.GetCursorSpelling(cursor));
80
return tmplparam;
81
}
0 commit comments