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:
authorBen Straub <bs@github.com>2014-01-08 22:31:29 +0400
committerBen Straub <bs@github.com>2014-01-10 03:07:37 +0400
commit9165ae30d4cff10681b5b65f094d0d4320426b6e (patch)
tree0060736b5eb2a1d6a50a04f7b926a9beedfd3b59 /LibGit2Sharp/ObjectDatabase.cs
parentdce1367264ac8c5ba6df22080cac1e22100a8c75 (diff)
Introduce marshaling extension to IntPtr
Diffstat (limited to 'LibGit2Sharp/ObjectDatabase.cs')
-rw-r--r--LibGit2Sharp/ObjectDatabase.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/LibGit2Sharp/ObjectDatabase.cs b/LibGit2Sharp/ObjectDatabase.cs
index 1fe0a890..bb43e640 100644
--- a/LibGit2Sharp/ObjectDatabase.cs
+++ b/LibGit2Sharp/ObjectDatabase.cs
@@ -43,7 +43,7 @@ namespace LibGit2Sharp
public virtual IEnumerator<GitObject> GetEnumerator()
{
ICollection<GitOid> oids = Proxy.git_odb_foreach(handle,
- ptr => (GitOid) Marshal.PtrToStructure(ptr, typeof (GitOid)));
+ ptr => ptr.MarshalAs<GitOid>());
return oids
.Select(gitOid => repo.Lookup<GitObject>(new ObjectId(gitOid)))