remote: add missing include git2/remote.h

Otherwise we get an incomplete type error, since git_remote_callbacks
isn't declared yet.
This commit is contained in:
Michael Schubert 2012-08-04 15:22:38 +02:00
parent 5daca042c6
commit 7e9f78b5fe
3 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,6 @@
* a Linking Exception. For full terms see the included COPYING file.
*/
#include "git2/remote.h"
#include "git2/oid.h"
#include "git2/refs.h"
#include "git2/revwalk.h"

View File

@ -5,7 +5,6 @@
* a Linking Exception. For full terms see the included COPYING file.
*/
#include "git2/remote.h"
#include "git2/config.h"
#include "git2/types.h"

View File

@ -7,6 +7,8 @@
#ifndef INCLUDE_remote_h__
#define INCLUDE_remote_h__
#include "git2/remote.h"
#include "refspec.h"
#include "transport.h"
#include "repository.h"