Fix clippy warning
This commit is contained in:
parent
0fbcb30303
commit
e91404bcc3
|
@ -1103,7 +1103,7 @@ pub fn without_block_comments(lines: Vec<&str>) -> Vec<&str> {
|
|||
|
||||
let mut nest_level = 0;
|
||||
|
||||
for line in lines.into_iter() {
|
||||
for line in lines {
|
||||
if line.contains("/*") {
|
||||
nest_level += 1;
|
||||
continue;
|
||||
|
|
Loading…
Reference in New Issue