summaryrefslogtreecommitdiff
path: root/include/git2/errors.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/git2/errors.h')
-rw-r--r--include/git2/errors.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/include/git2/errors.h b/include/git2/errors.h
index bc420d1d4..085dd52f0 100644
--- a/include/git2/errors.h
+++ b/include/git2/errors.h
@@ -127,14 +127,9 @@ typedef enum {
GITERR_ZLIB,
GITERR_REPOSITORY,
GITERR_CONFIG,
+ GITERR_REGEX,
} git_error_class;
-#define GITERR_CHECK_ALLOC(ptr) if (ptr == NULL) { return -1; }
-
-GIT_EXTERN(void) giterr_set_oom(void);
-GIT_EXTERN(void) giterr_set(int error_class, const char *string, ...);
-GIT_EXTERN(void) giterr_clear(void);
-
/**
* Return a detailed error string with the latest error
* that occurred in the library.