basic streaming read works now, just need to clean up the logic

This commit is contained in:
Thomas Fussell 2017-06-24 22:07:37 -04:00
parent 6f716c6e89
commit fdd91f817f

View File

@ -282,6 +282,16 @@ cell xlsx_consumer::read_cell()
cell.format(target_.format(format_id));
}
if (!in_element(qn("spreadsheetml", "row")))
{
expect_end_element(qn("spreadsheetml", "row"));
if (!in_element(qn("spreadsheetml", "sheetData")))
{
expect_end_element(qn("spreadsheetml", "sheetData"));
}
}
return cell;
}