Skip to content
This repository was archived by the owner on Jan 19, 2021. It is now read-only.

Commit 6a04bec

Browse files
committed
More minor updates, fighting with Travis
1 parent c67d8e5 commit 6a04bec

File tree

10 files changed

+10
-0
lines changed

10 files changed

+10
-0
lines changed

src/config.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#include <cppgit2/config.hpp>
2+
#include <functional>
23

34
namespace cppgit2 {
45

src/diff.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#include <cppgit2/diff.hpp>
2+
#include <functional>
23

34
namespace cppgit2 {
45

src/index.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#include <cppgit2/repository.hpp>
2+
#include <functional>
23

34
namespace cppgit2 {
45

src/odb.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#include <cppgit2/odb.hpp>
22
using namespace cppgit2;
3+
#include <functional>
34

45
odb::odb() : c_ptr_(nullptr), owner_(ownership::user) {
56
git_odb_new(&c_ptr_); // owned by user

src/pack_builder.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#include <cppgit2/pack_builder.hpp>
2+
#include <functional>
23

34
namespace cppgit2 {
45

src/patch.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#include <cppgit2/patch.hpp>
22
using namespace cppgit2;
3+
#include <functional>
34

45
patch::patch() : c_ptr_(nullptr), owner_(ownership::libgit2) {}
56

src/repository.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#include <cppgit2/repository.hpp>
2+
#include <functional>
23

34
namespace cppgit2 {
45

src/revwalk.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#include <cppgit2/repository.hpp>
22
using namespace cppgit2;
3+
#include <functional>
34

45
revwalk::revwalk()
56
: done_(false), c_ptr_(nullptr), owner_(ownership::libgit2) {}

src/tree.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#include <cppgit2/repository.hpp>
2+
#include <functional>
23

34
namespace cppgit2 {
45

src/tree_builder.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#include <cppgit2/tree_builder.hpp>
2+
#include <functional>
23

34
namespace cppgit2 {
45

0 commit comments

Comments
 (0)