summaryrefslogtreecommitdiffstats
path: root/strbuf.c
diff options
context:
space:
mode:
authorBrandon Williams <bmwill@google.com>2017-10-31 19:19:08 +0100
committerJunio C Hamano <gitster@pobox.com>2017-11-01 03:50:03 +0100
commit3b69daed861daec1923c369d59c97e46eb3c3d7b (patch)
treebc66d274c0b97aa27526320778387e557dc22dbe /strbuf.c
parentdiff: remove touched flags (diff)
downloadgit-3b69daed861daec1923c369d59c97e46eb3c3d7b.tar.xz
git-3b69daed861daec1923c369d59c97e46eb3c3d7b.zip
diff: remove DIFF_OPT_TST macro
Remove the `DIFF_OPT_TST` macro and instead access the flags directly. This conversion is done using the following semantic patch: @@ expression E; identifier fld; @@ - DIFF_OPT_TST(&E, fld) + E.flags.fld @@ type T; T *ptr; identifier fld; @@ - DIFF_OPT_TST(ptr, fld) + ptr->flags.fld Signed-off-by: Brandon Williams <bmwill@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'strbuf.c')
0 files changed, 0 insertions, 0 deletions