Skip to content

Commit 86f52a6

Browse files
Merge pull request #278 from tannergooding/main
Ensure that test outputs are marked "partial"
2 parents c1f475a + 0d79926 commit 86f52a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sources/ClangSharp.PInvokeGenerator/PInvokeGenerator.VisitDecl.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1050,7 +1050,7 @@ private void VisitRecordDecl(RecordDecl recordDecl)
10501050
_testOutputBuilder.WriteIndented("/// <summary>Provides validation of the <see cref=\"");
10511051
_testOutputBuilder.Write(escapedName);
10521052
_testOutputBuilder.WriteLine("\" /> struct.</summary>");
1053-
_testOutputBuilder.WriteIndented("public static unsafe class ");
1053+
_testOutputBuilder.WriteIndented("public static unsafe partial class ");
10541054
_testOutputBuilder.Write(escapedName);
10551055
_testOutputBuilder.WriteLine("Tests");
10561056
_testOutputBuilder.WriteBlockStart();

0 commit comments

Comments
 (0)