Skip to content

Commit c4e12e4

Browse files
committed
use row_iterator for tmp rather than iterator (which was construed as std::iterator on solaris)
1 parent 9afb261 commit c4e12e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

inst/include/RcppParallel/RMatrix.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class RMatrix {
4141
}
4242

4343
inline row_iterator operator++(int) {
44-
iterator tmp(*this);
44+
row_iterator tmp(*this);
4545
operator++();
4646
return tmp;
4747
}

0 commit comments

Comments
 (0)