mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-04-23 04:09:02 +02:00
Cleanup: Avoid signed/unsigned comparisons.
The ones ones left are for DMD-defined constants.
This commit is contained in:
@@ -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];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user