summaryrefslogtreecommitdiff
path: root/include/git2
diff options
context:
space:
mode:
authorVicent Martí <tanoku@gmail.com>2012-05-11 12:20:19 +0200
committerVicent Martí <tanoku@gmail.com>2012-05-18 01:25:57 +0200
commitfe3bcf7d7a1950d430a043a2ae11b81d231d6b1c (patch)
tree0e9cda1e5c5364c384183f7e0490a4a868a35839 /include/git2
parent255c38c500e8fc1d8adcd86e42f8209ef0b84948 (diff)
downloadlibgit2-fe3bcf7d7a1950d430a043a2ae11b81d231d6b1c.tar.gz
errors: Remove old comments
Diffstat (limited to 'include/git2')
-rw-r--r--include/git2/errors.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/include/git2/errors.h b/include/git2/errors.h
index 856343857..fa39a6730 100644
--- a/include/git2/errors.h
+++ b/include/git2/errors.h
@@ -20,25 +20,12 @@ GIT_BEGIN_DECL
typedef enum {
GIT_SUCCESS = 0,
GIT_ERROR = -1,
-
- /** Input does not exist in the scope searched. */
GIT_ENOTFOUND = -3,
-
- /** A reference with this name already exists */
GIT_EEXISTS = -23,
-
- /** The given integer literal is too large to be parsed */
GIT_EOVERFLOW = -24,
-
- /** The given short oid is ambiguous */
GIT_EAMBIGUOUS = -29,
-
- /** Skip and passthrough the given ODB backend */
GIT_EPASSTHROUGH = -30,
-
- /** The buffer is too short to satisfy the request */
GIT_ESHORTBUFFER = -32,
-
GIT_EREVWALKOVER = -33,
} git_error_t;