From 6b9d49516837dd2f0732dbfad438f2c6d3374d93 Mon Sep 17 00:00:00 2001 From: seleznevae Date: Sat, 1 Sep 2018 20:10:38 +0300 Subject: [PATCH] [F] Fixed compiler warnings --- lib/fort.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/fort.hpp b/lib/fort.hpp index af3eb7c..424a0da 100644 --- a/lib/fort.hpp +++ b/lib/fort.hpp @@ -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_);