Commit 98cfb416 authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Fixed typos in SparseMatrix.hpp and SparseSandboxMatrix.hpp

parent ffb56de9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -479,7 +479,7 @@ template< typename Function >
void
SparseSandboxMatrix< Real, Device, Index, MatrixType, RealAllocator, IndexAllocator >::forAllRows( Function&& function ) const
{
   this->getConsView().forAllRows( function );
   this->getConstView().forAllRows( function );
}

template< typename Real, typename Device, typename Index, typename MatrixType, typename RealAllocator, typename IndexAllocator >
+1 −1
Original line number Diff line number Diff line
@@ -795,7 +795,7 @@ void
SparseMatrix< Real, Device, Index, MatrixType, Segments, ComputeReal, RealAllocator, IndexAllocator >::forAllRows(
   Function&& function ) const
{
   this->getConsView().forAllRows( function );
   this->getConstView().forAllRows( function );
}

template< typename Real,