fix unnecessary assignment
This commit is contained in:
parent
0ffec39618
commit
d805fd6f15
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ void template_type::strip_whitespace() {
|
||||||
store_prefixes(line_begin);
|
store_prefixes(line_begin);
|
||||||
|
|
||||||
auto c = line_begin;
|
auto c = line_begin;
|
||||||
for (bool end = false; !end; c = (*c).ws_only() ? tokens.erase(c) : ++c)
|
for (bool end = false; !end; (*c).ws_only() ? c = tokens.erase(c) : ++c)
|
||||||
if ((end = (*c).eol()))
|
if ((end = (*c).eol()))
|
||||||
it = c - 1;
|
it = c - 1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue