Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
line-log: rename 'new' variables
author
Brandon Williams
<bmwill@google.com>
Wed, 14 Feb 2018 18:59:44 +0000
(10:59 -0800)
committer
Junio C Hamano
<gitster@pobox.com>
Thu, 22 Feb 2018 18:08:05 +0000
(10:08 -0800)
Rename C++ keyword in order to bring the codebase closer to being able
to be compiled with a C++ compiler.
Signed-off-by: Brandon Williams <bmwill@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
line-log.c
patch
|
blob
|
history
raw
|
patch
|
inline
| side by side (parent:
5925631
)
diff --git
a/line-log.c
b/line-log.c
index 545ad0f28bce0ac0f92a31019b92f7ef8a668356..cdc2257db56f7d68412bb456e91854a9e9aa5cd5 100644
(file)
--- a/
line-log.c
+++ b/
line-log.c
@@
-151,29
+151,29
@@
static void range_set_union(struct range_set *out,
assert(out->nr == 0);
while (i < a->nr || j < b->nr) {
assert(out->nr == 0);
while (i < a->nr || j < b->nr) {
- struct range *new;
+ struct range *new
_range
;
if (i < a->nr && j < b->nr) {
if (ra[i].start < rb[j].start)
if (i < a->nr && j < b->nr) {
if (ra[i].start < rb[j].start)
- new = &ra[i++];
+ new
_range
= &ra[i++];
else if (ra[i].start > rb[j].start)
else if (ra[i].start > rb[j].start)
- new = &rb[j++];
+ new
_range
= &rb[j++];
else if (ra[i].end < rb[j].end)
else if (ra[i].end < rb[j].end)
- new = &ra[i++];
+ new
_range
= &ra[i++];
else
else
- new = &rb[j++];
+ new
_range
= &rb[j++];
} else if (i < a->nr) /* b exhausted */
} else if (i < a->nr) /* b exhausted */
- new = &ra[i++];
+ new
_range
= &ra[i++];
else /* a exhausted */
else /* a exhausted */
- new = &rb[j++];
- if (new
->start == new
->end)
+ new
_range
= &rb[j++];
+ if (new
_range->start == new_range
->end)
; /* empty range */
; /* empty range */
- else if (!out->nr || out->ranges[out->nr-1].end < new->start) {
+ else if (!out->nr || out->ranges[out->nr-1].end < new
_range
->start) {
range_set_grow(out, 1);
range_set_grow(out, 1);
- out->ranges[out->nr].start = new->start;
- out->ranges[out->nr].end = new->end;
+ out->ranges[out->nr].start = new
_range
->start;
+ out->ranges[out->nr].end = new
_range
->end;
out->nr++;
out->nr++;
- } else if (out->ranges[out->nr-1].end < new->end) {
- out->ranges[out->nr-1].end = new->end;
+ } else if (out->ranges[out->nr-1].end < new
_range
->end) {
+ out->ranges[out->nr-1].end = new
_range
->end;
}
}
}
}
}
}
@@
-696,18
+696,18
@@
static struct line_log_data *line_log_data_merge(struct line_log_data *a,
static void add_line_range(struct rev_info *revs, struct commit *commit,
struct line_log_data *range)
{
static void add_line_range(struct rev_info *revs, struct commit *commit,
struct line_log_data *range)
{
- struct line_log_data *old = NULL;
- struct line_log_data *new = NULL;
+ struct line_log_data *old
_line
= NULL;
+ struct line_log_data *new
_line
= NULL;
- old = lookup_decoration(&revs->line_log_data, &commit->object);
- if (old && range) {
- new
= line_log_data_merge(old
, range);
- free_line_log_data(old);
+ old
_line
= lookup_decoration(&revs->line_log_data, &commit->object);
+ if (old
_line
&& range) {
+ new
_line = line_log_data_merge(old_line
, range);
+ free_line_log_data(old
_line
);
} else if (range)
} else if (range)
- new = line_log_data_copy(range);
+ new
_line
= line_log_data_copy(range);
- if (new)
- add_decoration(&revs->line_log_data, &commit->object, new);
+ if (new
_line
)
+ add_decoration(&revs->line_log_data, &commit->object, new
_line
);
}
static void clear_commit_line_range(struct rev_info *revs, struct commit *commit)
}
static void clear_commit_line_range(struct rev_info *revs, struct commit *commit)
@@
-1042,12
+1042,12
@@
static int process_diff_filepair(struct rev_info *rev,
static struct diff_filepair *diff_filepair_dup(struct diff_filepair *pair)
{
static struct diff_filepair *diff_filepair_dup(struct diff_filepair *pair)
{
- struct diff_filepair *new = xmalloc(sizeof(struct diff_filepair));
- new->one = pair->one;
- new->two = pair->two;
- new->one->count++;
- new->two->count++;
- return new;
+ struct diff_filepair *new
_filepair
= xmalloc(sizeof(struct diff_filepair));
+ new
_filepair
->one = pair->one;
+ new
_filepair
->two = pair->two;
+ new
_filepair
->one->count++;
+ new
_filepair
->two->count++;
+ return new
_filepair
;
}
static void free_diffqueues(int n, struct diff_queue_struct *dq)
}
static void free_diffqueues(int n, struct diff_queue_struct *dq)