diff options
Diffstat (limited to 'src/diff.c')
-rw-r--r-- | src/diff.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/diff.c b/src/diff.c index b2a5ff947..c7a652896 100644 --- a/src/diff.c +++ b/src/diff.c @@ -13,13 +13,6 @@ #include "commit.h" #include "index.h" -#define DIFF_FLAG_IS_SET(DIFF,FLAG) \ - (((DIFF)->opts.flags & (FLAG)) != 0) -#define DIFF_FLAG_ISNT_SET(DIFF,FLAG) \ - (((DIFF)->opts.flags & (FLAG)) == 0) -#define DIFF_FLAG_SET(DIFF,FLAG,VAL) (DIFF)->opts.flags = \ - (VAL) ? ((DIFF)->opts.flags | (FLAG)) : ((DIFF)->opts.flags & ~(VAL)) - struct patch_id_args { git_hash_ctx ctx; git_oid result; |