Cleanup: Avoid signed/unsigned comparisons.

The ones ones left are for DMD-defined constants.
This commit is contained in:
David Nadlinger
2012-12-20 01:06:41 +01:00
parent 189115fa98
commit 59a4a02e49
14 changed files with 35 additions and 36 deletions

View File

@@ -1113,7 +1113,7 @@ void UnrolledLoopStatement::toIR(IRState* p)
// do statements
Statement** stmts = (Statement**)statements->data;
for (int i=0; i<nstmt; i++)
for (size_t i=0; i<nstmt; i++)
{
Statement* s = stmts[i];