Skip to content

Commit 06eb00a

Browse files
committed
Fix missing private modifier
1 parent 4c89e4e commit 06eb00a

File tree

2 files changed

+1
-0
lines changed

2 files changed

+1
-0
lines changed

.silktouch/d48a9fc4a502f7c6.stout

0 Bytes
Binary file not shown.

sources/SilkTouch/SilkTouch/Mods/TransformVulkan.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,7 @@ private IEnumerable<MemberDeclarationSyntax> RewriteMember(MemberDeclarationSynt
177177
.WithExplicitInterfaceSpecifier(null)
178178
.WithIdentifier(Identifier(privateMethodName))
179179
.WithModifiers([
180+
Token(SyntaxKind.PrivateKeyword),
180181
..member.Modifiers.Where(modifier =>
181182
!SyntaxFacts.IsAccessibilityModifier(modifier.Kind()))
182183
]);

0 commit comments

Comments
 (0)