File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments