diff options
| author | Edward Thomson <ethomson@edwardthomson.com> | 2020-01-18 14:11:01 +0000 |
|---|---|---|
| committer | Edward Thomson <ethomson@edwardthomson.com> | 2020-01-18 14:14:38 +0000 |
| commit | b59c71d8a48c2d70e05f82c3a87b49e0b99db810 (patch) | |
| tree | 8a457d278f99706a0a49d2addcfcbbd6a4977f9b /src/diff.h | |
| parent | df3063eafeff67b855b98068f8fdb3ecfd1daf65 (diff) | |
| download | libgit2-b59c71d8a48c2d70e05f82c3a87b49e0b99db810.tar.gz | |
iterator: update enum type name for consistency
libgit2 does not use `type_t` suffixes as it's redundant; thus, rename
`git_iterator_type_t` to `git_iterator_t` for consistency.
Diffstat (limited to 'src/diff.h')
| -rw-r--r-- | src/diff.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/diff.h b/src/diff.h index 1a4ee47e0..69233b39f 100644 --- a/src/diff.h +++ b/src/diff.h @@ -39,8 +39,8 @@ struct git_diff { git_diff_options opts; git_vector deltas; /* vector of git_diff_delta */ git_pool pool; - git_iterator_type_t old_src; - git_iterator_type_t new_src; + git_iterator_t old_src; + git_iterator_t new_src; git_diff_perfdata perf; int (*strcomp)(const char *, const char *); |
