Commit 86815dca20604147f81618e54032dc194653a668

Pierre-Olivier Latour 2015-01-23T16:04:23

Make sure sys/repository.h includes the required headers It was missing "common.h" and "types.h" like other system headers. This generated compilation errors if including it directly.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
diff --git a/include/git2/sys/repository.h b/include/git2/sys/repository.h
index dd7b22e..082a844 100644
--- a/include/git2/sys/repository.h
+++ b/include/git2/sys/repository.h
@@ -7,6 +7,9 @@
 #ifndef INCLUDE_sys_git_repository_h__
 #define INCLUDE_sys_git_repository_h__
 
+#include "git2/common.h"
+#include "git2/types.h"
+
 /**
  * @file git2/sys/repository.h
  * @brief Git repository custom implementation routines