diff options
author | Jakob Pfender <jpfender@elegosoft.com> | 2011-04-11 12:38:50 +0200 |
---|---|---|
committer | Jakob Pfender <jpfender@elegosoft.com> | 2011-04-11 12:38:50 +0200 |
commit | 1eb0f68ec7735bd3df8f9cb49fed232d1bbfae3d (patch) | |
tree | a649cb025892f8f3947ba4cbd0fa98ff3ae9b368 /include/git2/common.h | |
parent | fd279b262df31c9a5d88db78e9e9a6de07e62979 (diff) | |
parent | fdd0cc9e8948bb65c9a461c58e5094a3613bd975 (diff) | |
download | libgit2-1eb0f68ec7735bd3df8f9cb49fed232d1bbfae3d.tar.gz |
merge branch 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 e0c6bc542..22c7cc466 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 { |