Skip to content

Commit 2de5d76

Browse files
committed
fix error: passing the iterator by value to remove const
1 parent 9eb98c9 commit 2de5d76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

linbox/matrix/densematrix/blas-matrix.inl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ namespace LinBox
5252

5353
template<class _Field, class _Storage>
5454
template <class constIterator>
55-
void BlasMatrix< _Field, _Storage >::createBlasMatrix (const constIterator& v)
55+
void BlasMatrix< _Field, _Storage >::createBlasMatrix (constIterator v)
5656
{
5757
constIterator v_end = v+(_col*_row) ;
5858
Element_ptr iter_addr = getPointer();

0 commit comments

Comments
 (0)