Commit c0734593719c37c7c7c4cbd2c797e41b6276e330

Michael Schubert 2012-06-12T11:33:46

revparse: remove unnecessary GIT_BEGIN_DECL

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
diff --git a/src/revparse.c b/src/revparse.c
index 1e6b710..c66a985 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