Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'LibGit2Sharp/Core/GitIndexEntry.cs')
-rw-r--r--LibGit2Sharp/Core/GitIndexEntry.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/LibGit2Sharp/Core/GitIndexEntry.cs b/LibGit2Sharp/Core/GitIndexEntry.cs
index 2066cb0b..bf0df2ca 100644
--- a/LibGit2Sharp/Core/GitIndexEntry.cs
+++ b/LibGit2Sharp/Core/GitIndexEntry.cs
@@ -1,4 +1,5 @@
-using System.Runtime.InteropServices;
+using System;
+using System.Runtime.InteropServices;
namespace LibGit2Sharp.Core
{
@@ -16,6 +17,6 @@ namespace LibGit2Sharp.Core
public GitOid oid;
public ushort Flags;
public ushort ExtendedFlags;
- public string Path;
+ public IntPtr Path;
}
}