summaryrefslogtreecommitdiff
path: root/include/git2/sys/refdb_backend.h
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@microsoft.com>2013-09-24 11:04:14 -0400
committerEdward Thomson <ethomson@microsoft.com>2013-09-24 11:04:14 -0400
commite3f3868a1c4ced6109cbd4644cb1e3e8e9d8a5e9 (patch)
tree76af30c252afaf9409e0bd8d6c54a978cc3e6419 /include/git2/sys/refdb_backend.h
parent10edb7a92a6d9b886f3dea083dba0aaba1851200 (diff)
downloadlibgit2-e3f3868a1c4ced6109cbd4644cb1e3e8e9d8a5e9.tar.gz
'del' instead of 'delete' for the poor C++ users
Diffstat (limited to 'include/git2/sys/refdb_backend.h')
-rw-r--r--include/git2/sys/refdb_backend.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/git2/sys/refdb_backend.h b/include/git2/sys/refdb_backend.h
index 9b457b074..e0a24f433 100644
--- a/include/git2/sys/refdb_backend.h
+++ b/include/git2/sys/refdb_backend.h
@@ -103,7 +103,7 @@ struct git_refdb_backend {
* Deletes the given reference from the refdb. A refdb implementation
* must provide this function.
*/
- int (*delete)(git_refdb_backend *backend, const char *ref_name);
+ int (*del)(git_refdb_backend *backend, const char *ref_name);
/**
* Suggests that the given refdb compress or optimize its references.