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

GitMergeHeadHandle.cs « Handles « Core « LibGit2Sharp - github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f49e30e5409893121d0175dba8cd5b22a3a118ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System.Runtime.InteropServices;

namespace LibGit2Sharp.Core.Handles
{
    internal class GitMergeHeadHandle : SafeHandleBase
    {
        protected override bool ReleaseHandleImpl()
        {
            Proxy.git_merge_head_free(handle);
            return true;
        }
    }
}