mirror of https://github.com/adamdruppe/arsd.git
deprecated loop
This commit is contained in:
parent
589df3f3da
commit
661df66a5d
4
dom.d
4
dom.d
|
@ -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++;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue