diff options
author | Pierre-Olivier Latour <pol@mac.com> | 2014-11-15 08:20:36 +0900 |
---|---|---|
committer | Pierre-Olivier Latour <pol@mac.com> | 2014-11-15 08:20:36 +0900 |
commit | 889d8c8b8fe989b3208c68a5b024095d57105f6c (patch) | |
tree | 40b2dbd95e7cc513f1f0dc5ae6656671f1ba8cb1 | |
parent | 65f6c1c7eb7beb412e30cacd5cbb2b00e1e975b0 (diff) | |
download | libgit2-889d8c8b8fe989b3208c68a5b024095d57105f6c.tar.gz |
Fixed git2.h not including threads.h anymore
-rw-r--r-- | include/git2.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/git2.h b/include/git2.h index 388cd82d0..b36bb5365 100644 --- a/include/git2.h +++ b/include/git2.h @@ -24,6 +24,7 @@ #include "git2/diff.h" #include "git2/errors.h" #include "git2/filter.h" +#include "git2/global.h" #include "git2/graph.h" #include "git2/ignore.h" #include "git2/index.h" @@ -56,7 +57,7 @@ #include "git2/status.h" #include "git2/submodule.h" #include "git2/tag.h" -#include "git2/global.h" +#include "git2/threads.h" #include "git2/transport.h" #include "git2/tree.h" #include "git2/types.h" |