deprecated loop

This commit is contained in:
Adam D. Ruppe 2019-01-09 10:32:06 -05:00
parent 589df3f3da
commit 661df66a5d
1 changed files with 2 additions and 2 deletions

4
dom.d
View File

@ -5042,7 +5042,7 @@ class Table : Element {
return position;
}
foreach(int i, rowElement; rows) {
foreach(i, rowElement; rows) {
auto row = cast(TableRow) rowElement;
assert(row !is null);
assert(i < ret.length);
@ -5059,7 +5059,7 @@ class Table : Element {
foreach(int j; 0 .. cell.colspan) {
foreach(int k; 0 .. cell.rowspan)
// if the first row, always append.
insertCell(k + i, k == 0 ? -1 : position, cell);
insertCell(k + cast(int) i, k == 0 ? -1 : position, cell);
position++;
}
}