- Clear out GCC 6.2 warnings (interestingly they now check for misleading indentation which found a good case in fragglescript/t_func.cpp even though I believe it was harmless)

This commit is contained in:
Braden Obrzut 2016-10-17 00:19:08 -04:00
commit 741c9edf42
11 changed files with 24 additions and 23 deletions

View file

@ -497,7 +497,7 @@ DFsSection *FParser::looping_section()
if(!best || (current->start_index > best->start_index))
best = current; // save it
}
current = current->next;
current = current->next;
}
}