Skip to content
Snippets Groups Projects
Commit e9b827d6 authored by Oliver Sander's avatar Oliver Sander Committed by sander
Browse files

avoid compiler warning

[[Imported from SVN: r7293]]
parent 74b7b0b0
No related branches found
No related tags found
No related merge requests found
......@@ -43,7 +43,7 @@ public:
// always scalar but the vectors may not be
double sum = 0;
for (int i=0; i<matrix_->N(); i++) {
for (size_t i=0; i<matrix_->N(); i++) {
typename Dune::BCRSMatrix<Dune::FieldMatrix<double,1,1> >::row_type::const_iterator cIt = (*matrix_)[i].begin();
typename Dune::BCRSMatrix<Dune::FieldMatrix<double,1,1> >::row_type::const_iterator cEndIt = (*matrix_)[i].end();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment