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

avoid signed/unsigned warning

[[Imported from SVN: r6331]]
parent 04986755
Branches
No related tags found
No related merge requests found
......@@ -21,7 +21,7 @@ public:
{
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