Fix clippy warning

This commit is contained in:
Michael Wright 2018-04-02 07:35:13 +02:00
parent 0fbcb30303
commit e91404bcc3
1 changed files with 1 additions and 1 deletions

View File

@ -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;