Skip to content
Snippets Groups Projects
Commit 6a7bf9f8 authored by Markus Blatt's avatar Markus Blatt
Browse files

Changed initialization order of BiCGSTABSolver constructor to get rid

off warnings.

[[Imported from SVN: r487]]
parent 10f288b8
No related branches found
No related tags found
No related merge requests found
......@@ -588,7 +588,7 @@ namespace Dune {
template<class L, class S, class P>
BiCGSTABSolver (L& op, S& sp, P& prec,
double reduction, int maxit, int verbose) :
_op(op), _sp(sp), _prec(prec), _reduction(reduction), _maxit(maxit), _verbose(verbose)
_op(op), _prec(prec), _sp(sp), _reduction(reduction), _maxit(maxit), _verbose(verbose)
{
IsTrue< static_cast<int>(L::category) == static_cast<int>(P::category) >::yes();
IsTrue< static_cast<int>(L::category) == static_cast<int>(S::category) >::yes();
......
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