Skip to content
Snippets Groups Projects
Commit 30a62fa1 authored by Oliver Sander's avatar Oliver Sander
Browse files

fix warning about unused variable

[[Imported from SVN: r1609]]
parent 280965fe
No related branches found
No related tags found
No related merge requests found
......@@ -102,8 +102,7 @@ void setBoundary(Dune::BlockVector<Dune::FieldVector<double,BS> >& lhs,
int y = i%N;
if(x==0 || y ==0 || x==N-1 || y==N-1) {
double h = 1.0 / ((double) (N-1));
lhs[i]=rhs[i]=0; //((double)x)*((double)y)*h*h;
lhs[i]=rhs[i]=0;
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment