diff options
author | Carlos Martín Nieto <cmn@elego.de> | 2011-04-11 17:41:21 +0200 |
---|---|---|
committer | Carlos Martín Nieto <cmn@elego.de> | 2011-04-11 17:43:56 +0200 |
commit | 55c197cdd37b34c7b4877bc0434c297075e11222 (patch) | |
tree | 05dcc126d117b1753e07f0a173cf9498a38ac4f9 /include/git2/common.h | |
parent | b075b9910c56c356d53439fd34486a905146211a (diff) | |
parent | fdd0cc9e8948bb65c9a461c58e5094a3613bd975 (diff) | |
download | libgit2-55c197cdd37b34c7b4877bc0434c297075e11222.tar.gz |
Merge upstream/development
Diffstat (limited to 'include/git2/common.h')
-rw-r--r-- | include/git2/common.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/git2/common.h b/include/git2/common.h index 7cb98b824..ab267e620 100644 --- a/include/git2/common.h +++ b/include/git2/common.h @@ -164,6 +164,12 @@ /** A reference with this name already exists */ #define GIT_EEXISTS (GIT_ERROR - 23) +/** The given integer literal is too large to be parsed */ +#define GIT_EOVERFLOW (GIT_ERROR - 24) + +/** The given literal is not a valid number */ +#define GIT_ENOTNUM (GIT_ERROR - 25) + GIT_BEGIN_DECL typedef struct { |