Skip to content

Commit

Permalink
Small fix to get inheritdoc comments to work
Browse files Browse the repository at this point in the history
  • Loading branch information
NogginBops committed Mar 19, 2023
1 parent 7de7c50 commit a7c1420
Show file tree
Hide file tree
Showing 5 changed files with 7,198 additions and 7,197 deletions.
1 change: 1 addition & 0 deletions src/Generator/Writer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,7 @@ private static void WriteOverloadMethod(IndentedTextWriter writer, Overload over
string parameterTypes = string.Join(", ", overload.NativeFunction.Parameters.Select(p => p.Type.ToCSString()));

string nativeFunctionName = overload.NativeFunction.FunctionName;
if (removeVendorPostfix) nativeFunctionName = NameMangler.RemoveVendorPostfix(nativeFunctionName);

writer.WriteLine($"/// <inheritdoc cref=\"{nativeFunctionName}({parameterTypes})\"/>");

Expand Down

0 comments on commit a7c1420

Please sign in to comment.