summaryrefslogtreecommitdiff
path: root/src/reflog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/reflog.h')
-rw-r--r--src/reflog.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/reflog.h b/src/reflog.h
index 9444ebd10..2d31ae47d 100644
--- a/src/reflog.h
+++ b/src/reflog.h
@@ -27,9 +27,14 @@ struct git_reflog_entry {
};
struct git_reflog {
+ git_refdb *db;
char *ref_name;
- git_repository *owner;
git_vector entries;
};
+GIT_INLINE(size_t) reflog_inverse_index(size_t idx, size_t total)
+{
+ return (total - 1) - idx;
+}
+
#endif /* INCLUDE_reflog_h__ */