Commit 1e40e617 authored by Tomáš Oberhuber's avatar Tomáš Oberhuber
Browse files

Fixed DenseMatrixView::print.

parent 08a8fb8d
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -678,6 +678,7 @@ void DenseMatrixView< Real, Device, Index, Organization >::print( std::ostream&
         str_ << std::setw( 4 ) << std::right << column << ":" << std::setw( 4 ) << std::left << this->getElement( row, column );
         str << std::setw( 10 ) << str_.str();
      }
      if( row < this->getRows() - 1 )
         str << std::endl;
   }
}