comparison lwcc/preproc.c @ 494:836dc5371980 ccdev

Remove stray semicolon that almost certainly was causing a bug of some kind.
author William Astle <lost@l-w.ca>
date Mon, 05 Aug 2019 21:07:14 -0600
parents 73b2bfa17ab0
children
comparison
equal deleted inserted replaced
314:a3e277c58df9 494:836dc5371980
1578 for (t2 = t -> prev; t2; t2 = t2 -> prev) 1578 for (t2 = t -> prev; t2; t2 = t2 -> prev)
1579 { 1579 {
1580 if (t2 -> ttype != TOK_WSPACE) 1580 if (t2 -> ttype != TOK_WSPACE)
1581 break; 1581 break;
1582 } 1582 }
1583 for (t3 = t -> next; t3; t3 = t3 -> next); 1583 for (t3 = t -> next; t3; t3 = t3 -> next)
1584 { 1584 {
1585 if (t3 -> ttype != TOK_WSPACE) 1585 if (t3 -> ttype != TOK_WSPACE)
1586 break; 1586 break;
1587 } 1587 }
1588 // if no non-whitespace before or after, ignore it 1588 // if no non-whitespace before or after, ignore it