Commit 7e9a8ca0 authored by Tomáš Oberhuber's avatar Tomáš Oberhuber
Browse files

Restoration of protected members in Matrix.

parent dec4b388
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -918,7 +918,7 @@ operator=( const Dense< RHSReal, RHSDevice, RHSIndex, RHSRowMajorOrder, RHSRealA
   this->setLike( matrix );
   if( RowMajorOrder == RHSRowMajorOrder )
   {
      this->values = matrix.values;
      this->values = matrix.getValues();
      return *this;
   }

+1 −2
Original line number Diff line number Diff line
@@ -126,8 +126,7 @@ public:
   __cuda_callable__
   Index getValuesSize() const;

   // TODO: restore this
   //protected:
   protected:

   IndexType rows, columns, numberOfColors;