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 b44596a commit 98fcc16Copy full SHA for 98fcc16
sources/ClangSharp.PInvokeGenerator/PInvokeGenerator.VisitDecl.cs
@@ -508,7 +508,10 @@ private void VisitFunctionDecl(FunctionDecl functionDecl)
508
var parent = cxxMethodDecl.Parent;
509
Debug.Assert(parent is not null);
510
name = GetRemappedCursorName(parent);
511
+ }
512
513
+ if (cxxMethodDecl is not null)
514
+ {
515
overloadCount = GetOverloadCount(cxxMethodDecl);
516
}
517
0 commit comments