Bug #163 ยป 0001-Fixed-dead-code-with-a-modified-loop-invariant.patch
| src/Wt/WTableView.C | ||
|---|---|---|
|
const int firstRow,
|
||
|
const int lastRow)
|
||
|
{
|
||
|
for (int i = lastRow; i >= lastRow; i--) {
|
||
|
for (int i = lastRow; i >= firstRow; i--) {
|
||
|
table_->deleteRow(i - table_->headerCount());
|
||
|
}
|
||
|
}
|
||