1
0
Fork 0

[F] Fixed compiler warnings

This commit is contained in:
seleznevae 2018-09-01 20:10:38 +03:00
parent 63c01a7419
commit 6b9d495168
1 changed files with 1 additions and 1 deletions

View File

@ -533,7 +533,7 @@ public:
table_row_iterator(std::size_t row_idx, Table &table)
:row_idx_(row_idx), table_(table) {}
struct table_cell_iterator
class table_cell_iterator
operator[](std::size_t coll_idx)
{
return table_cell_iterator(row_idx_, coll_idx, table_);