Skip to content

Commit 78ffa87

Browse files
committed
linbox/matrix/densematrix/blas-matrix.h
1 parent 2de5d76 commit 78ffa87

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

linbox/matrix/densematrix/blas-matrix.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ namespace LinBox
107107
/*!@internal constructor from an iterator of elements.
108108
* @param v iterator on to \c Element s */
109109
template <class constIterator>
110-
void createBlasMatrix (const constIterator& it) ;
110+
void createBlasMatrix (constIterator it) ;
111111

112112

113113
/*! @internal

linbox/vector/blas-vector.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,8 @@ namespace LinBox {
241241
Element_ptr getPointer() { return _ptr; }
242242
ConstElement_ptr getConstPointer() const { return _ptr;}
243243

244-
const Storage &getRep() const { return _rep ; }
244+
Storage &refRep() { return _rep ; }
245+
const Storage &getRep() const { return _rep ; }
245246

246247
/** Get the increment in the vector
247248
* @return the inc value of the subvector

0 commit comments

Comments
 (0)