Skip to content

Commit 9c5fe5d

Browse files
committed
Fix outdated type definitions for testing on Unity side
1 parent fe274b7 commit 9c5fe5d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/MemoryPack.Unity/Assets/Tests/MemoryPackObjects/MemberKinds.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ public partial class MemberKindsAllUnmanaged
1616
public int A; // public field
1717
[MemoryPackInclude]
1818
private int B; // private field
19-
// public readonly int C; // public readonly field
20-
// [MemoryPackInclude]
21-
// private readonly int D; // readonly field
19+
public readonly int C; // public readonly field
20+
[MemoryPackInclude]
21+
private readonly int D; // readonly field
2222

2323
public int E { get; set; } // public property
2424
public int F { private get; set; } // private get

0 commit comments

Comments
 (0)