fix unnecessary assignment
This commit is contained in:
parent
0ffec39618
commit
d805fd6f15
@ -77,7 +77,7 @@ void template_type::strip_whitespace() {
|
||||
store_prefixes(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()))
|
||||
it = c - 1;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user