aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/SparseCore/SparseMatrix.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2015-06-09 09:11:12 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2015-06-09 09:11:12 +0200
commit9a2447b0c95bb62bd3e5ae68bf14d2c5e66a18cf (patch)
tree40712813d830e39c1e8e5b32be7c46abf4c90695 /Eigen/src/SparseCore/SparseMatrix.h
parentcd8b996f99de67035a0504cbaf0a627fb68f0f1d (diff)
Fix shadow warnings triggered by clang
Diffstat (limited to 'Eigen/src/SparseCore/SparseMatrix.h')
-rw-r--r--Eigen/src/SparseCore/SparseMatrix.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/Eigen/src/SparseCore/SparseMatrix.h b/Eigen/src/SparseCore/SparseMatrix.h
index 5c5bf2d8c..d10880cb5 100644
--- a/Eigen/src/SparseCore/SparseMatrix.h
+++ b/Eigen/src/SparseCore/SparseMatrix.h
@@ -1119,9 +1119,9 @@ typename SparseMatrix<_Scalar,_Options,_Index>::Scalar& SparseMatrix<_Scalar,_Op
// so that the entire free-space is allocated to the current inner-vector.
eigen_internal_assert(data_end < m_data.allocatedSize());
StorageIndex new_end = convert_index(m_data.allocatedSize());
- for(Index j=outer+1; j<=m_outerSize; ++j)
- if(m_outerIndex[j]==data_end)
- m_outerIndex[j] = new_end;
+ for(Index k=outer+1; k<=m_outerSize; ++k)
+ if(m_outerIndex[k]==data_end)
+ m_outerIndex[k] = new_end;
}
return m_data.value(p);
}
@@ -1144,9 +1144,9 @@ typename SparseMatrix<_Scalar,_Options,_Index>::Scalar& SparseMatrix<_Scalar,_Op
// so that the entire free-space is allocated to the current inner-vector.
eigen_internal_assert(data_end < m_data.allocatedSize());
StorageIndex new_end = convert_index(m_data.allocatedSize());
- for(Index j=outer+1; j<=m_outerSize; ++j)
- if(m_outerIndex[j]==data_end)
- m_outerIndex[j] = new_end;
+ for(Index k=outer+1; k<=m_outerSize; ++k)
+ if(m_outerIndex[k]==data_end)
+ m_outerIndex[k] = new_end;
}
// and insert it at the right position (sorted insertion)