We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a0ee55 commit a256d3bCopy full SHA for a256d3b
LibGit2Sharp/Core/NativeMethods.cs
@@ -272,7 +272,9 @@ internal static extern int git_commit_create_from_ids(
272
internal static extern OidSafeHandle git_commit_tree_id(GitObjectSafeHandle commit);
273
274
[DllImport(libgit2)]
275
- internal static extern int git_config_delete_entry(ConfigurationSafeHandle cfg, string name);
+ internal static extern int git_config_delete_entry(
276
+ ConfigurationSafeHandle cfg,
277
+ [MarshalAs(UnmanagedType.CustomMarshaler, MarshalCookie = UniqueId.UniqueIdentifier, MarshalTypeRef = typeof (StrictUtf8Marshaler))] string name);
278
279
280
internal static extern int git_config_find_global(GitBuf global_config_path);
0 commit comments