Skip to content
Snippets Groups Projects
Commit 1a48e91f authored by Tobias Malkmus's avatar Tobias Malkmus
Browse files

avoid initilization order warnings

parent b2ec0075
No related branches found
No related tags found
No related merge requests found
......@@ -264,8 +264,8 @@ namespace Fem
exactSolution_( container_.exactSolution() ),
rhs_( container_.rhs() ),
rhsOperator_( doCreateRhsOperator() ),
solver_( nullptr ),
ioTuple_( new IOTupleType( std::make_tuple( solution_.get(), exactSolution_.get() ) ) ),
solver_( nullptr ),
solverMonitor_( name() ),
diagnostics_( name() ),
additionalOutput_( name() )
......
......@@ -322,8 +322,8 @@ namespace Fem
BaseType( grid, container.template adapter<1>() ),
container_( container ),
space_( container_.template adapter<1>().space() ),
ellAlg_( grid, container_.template adapter<0>() ),
assembler_( container_, model() ),
ellAlg_( grid, container_.template adapter<0>() ),
ioTuple_( new IOTupleType( *BaseType::dataTuple(), *ellAlg_.dataTuple() ) ),
stokesSigmaEstimator_( new StokesSigmaEstimatorType( container_.template adapter<1>().gridPart(), ellAlg_.solution(), solution(), ellAlg_.assembler(), name() ) )
{
......
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