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.
2 parents 43d45ef + 864de6e commit be6c8f8Copy full SHA for be6c8f8
sources/ClangSharp.PInvokeGenerator/PInvokeGenerator.cs
@@ -4587,7 +4587,7 @@ bool IsAlwaysIncluded(Cursor cursor)
4587
bool IsExcludedByConfig(Cursor cursor)
4588
{
4589
return (_config.ExcludeFunctionsWithBody && (cursor is FunctionDecl functionDecl) && functionDecl.HasBody)
4590
- || (!_config.GenerateTemplateBindings && (cursor is TemplateDecl));
+ || (!_config.GenerateTemplateBindings && ((cursor is TemplateDecl) || (cursor is ClassTemplateSpecializationDecl)));
4591
}
4592
4593
bool IsExcludedByFile(Cursor cursor)
0 commit comments