summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Martín Nieto <cmn@dwim.me>2014-11-15 20:45:17 +0100
committerCarlos Martín Nieto <cmn@dwim.me>2014-11-15 20:45:17 +0100
commitce8822cb409917d0201f359cabe3ae55d25895da (patch)
treedb98aa962298e604dc6e8beecb47847f331c885e
parent624eb97fd5044b0ffa3b9b84c140df4069ed7ce9 (diff)
parent889d8c8b8fe989b3208c68a5b024095d57105f6c (diff)
downloadlibgit2-ce8822cb409917d0201f359cabe3ae55d25895da.tar.gz
Merge pull request #2707 from swisspol/fix_include
Fixed git2.h not including threads.h anymore
-rw-r--r--include/git2.h3
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"