Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sources/ClangSharp.PInvokeGenerator/PInvokeGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ static void GenerateNativeBitfieldAttribute(PInvokeGenerator generator, Stream?
sw.WriteLine(" /// <param name=\"offset\">The offset of the bitfield that was used in the native signature.</param>");
sw.WriteLine(" /// <param name=\"length\">The length of the bitfield that was used in the native signature.</param>");
sw.Write(indentString);
sw.WriteLine(" public NativeTypeNameAttribute(string name, int offset, int length)");
sw.WriteLine(" public NativeBitfieldAttribute(string name, int offset, int length)");
sw.Write(indentString);
sw.WriteLine(" {");
sw.Write(indentString);
Expand Down