test/fixtures/git2/common.h in docurium-0.6.0 vs test/fixtures/git2/common.h in docurium-0.7.0

- old
+ new

@@ -26,25 +26,20 @@ #define INCLUDE_git_common_h__ #include "thread-utils.h" #include <time.h> #include <stdlib.h> +#include <stdint.h> #ifdef __cplusplus # define GIT_BEGIN_DECL extern "C" { # define GIT_END_DECL } #else /** Start declarations in C mode */ # define GIT_BEGIN_DECL /* empty */ /** End declarations in C mode */ # define GIT_END_DECL /* empty */ #endif - -/* - * libclang won't consider anything with size_t to have comments unless we use - * this hack. - */ -typedef size_t size_t; /** Declare a public function exported for application use. */ #ifdef __GNUC__ # define GIT_EXTERN(type) extern \ __attribute__((visibility("default"))) \