We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c31d47d commit 5d3c4daCopy full SHA for 5d3c4da
ext/rugged/rugged.h
@@ -147,12 +147,6 @@ struct rugged_cb_payload
147
int exception;
148
};
149
150
-struct rugged_treecount_cb_payload
151
-{
152
- int count;
153
- int limit;
154
-};
155
-
156
struct rugged_remote_cb_payload
157
{
158
VALUE progress;
ext/rugged/rugged_tree.c
@@ -93,6 +93,12 @@ static VALUE rb_git_tree_entrycount(VALUE self)
93
return INT2FIX(git_tree_entrycount(tree));
94
}
95
96
+struct rugged_treecount_cb_payload
97
+{
98
+ int count;
99
+ int limit;
100
+};
101
+
102
static int rugged__treecount_cb(const char *root, const git_tree_entry *entry, void *data)
103
104
struct rugged_treecount_cb_payload *payload = data;
0 commit comments