Skip to content
Snippets Groups Projects
Commit 5c2397e5 authored by Jesper Andersson's avatar Jesper Andersson
Browse files

Fixed bug in Row() method of ColumnIterator

parent e0412d21
No related branches found
No related tags found
No related merge requests found
......@@ -164,7 +164,7 @@ public:
}
~ColumnIterator() {}
T operator*() const { return(*_val_it); }
unsigned int Row() const { return(*_ri_it); }
unsigned int Row() const { return((*_ri_it)+1); }
bool operator==(const ColumnIterator& rhs) const { return(_val_it == rhs._val_it); }
bool operator!=(const ColumnIterator& rhs) const { return(!(*this == rhs)); }
// Prefix increment. Use whenever possible
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment