From 135698134ecafff7846e342bf75202c434e54595 Mon Sep 17 00:00:00 2001
From: Tomas Oberhuber <tomas.oberhuber@fjfi.cvut.cz>
Date: Thu, 27 Feb 2020 10:56:12 +0100
Subject: [PATCH] Deleted unused variable in SparseMatrixView.

---
 src/TNL/Matrices/SparseMatrixView.hpp | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/TNL/Matrices/SparseMatrixView.hpp b/src/TNL/Matrices/SparseMatrixView.hpp
index 98285e064d..e0f1e5e0a7 100644
--- a/src/TNL/Matrices/SparseMatrixView.hpp
+++ b/src/TNL/Matrices/SparseMatrixView.hpp
@@ -209,7 +209,6 @@ SparseMatrixView< Real, Device, Index, MatrixType, SegmentsView >::
 getRow( const IndexType& rowIdx ) -> RowView
 {
    TNL_ASSERT_LT( rowIdx, this->getRows(), "Row index is larger than number of matrix rows." );
-   typename RowView::SegmentViewType t = this->segments.getSegmentView( rowIdx );
    return RowView( this->segments.getSegmentView( rowIdx ), this->values.getView(), this->columnIndexes.getView() );
 }
 
-- 
GitLab