summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Schubert <schu@schu.io>2012-06-12 11:33:46 +0200
committerMichael Schubert <schu@schu.io>2012-06-12 11:34:01 +0200
commitc0734593719c37c7c7c4cbd2c797e41b6276e330 (patch)
tree5d390dffb6606e7fc3c9e4e7f4d871b0302340d6
parent471fa05eb71f467df2556185c3cfdcfd6a979854 (diff)
downloadlibgit2-c0734593719c37c7c7c4cbd2c797e41b6276e330.tar.gz
revparse: remove unnecessary GIT_BEGIN_DECL
-rw-r--r--src/revparse.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/revparse.c b/src/revparse.c
index 1e6b7101f..c66a9852e 100644
--- a/src/revparse.c
+++ b/src/revparse.c
@@ -13,8 +13,6 @@
#include "git2.h"
-GIT_BEGIN_DECL
-
typedef enum {
REVPARSE_STATE_INIT,
REVPARSE_STATE_CARET,
@@ -748,6 +746,3 @@ int git_revparse_single(git_object **out, git_repository *repo, const char *spec
git_buf_free(&stepbuffer);
return retcode;
}
-
-
-GIT_END_DECL