You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: LibGit2Sharp/Core/GitStatusEntry.cs
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -7,21 +7,21 @@ namespace LibGit2Sharp.Core
7
7
/// A status entry from libgit2.
8
8
/// </summary>
9
9
[StructLayout(LayoutKind.Sequential)]
10
-
internalclassGitStatusEntry
10
+
internalunsafestructgit_status_entry
11
11
{
12
12
/// <summary>
13
13
/// Calculated status of a filepath in the working directory considering the current <see cref = "Repository.Index" /> and the <see cref="Repository.Head" />.
14
14
/// </summary>
15
-
publicFileStatusStatus;
15
+
publicFileStatusstatus;
16
16
17
17
/// <summary>
18
18
/// The difference between the <see cref="Repository.Head" /> and <see cref = "Repository.Index" />.
19
19
/// </summary>
20
-
publicIntPtrHeadToIndexPtr;
20
+
publicgit_diff_delta*head_to_index;
21
21
22
22
/// <summary>
23
23
/// The difference between the <see cref = "Repository.Index" /> and the working directory.
0 commit comments