Skip to content
Snippets Groups Projects
Commit a762fc25 authored by Stefan Girke's avatar Stefan Girke
Browse files

small interface change to avoid covariant return types

parent 89109caf
No related branches found
No related tags found
No related merge requests found
......@@ -129,7 +129,7 @@ namespace Fem
}
//! return default data tuple for data output
//virtual IOTupleType dataTuple() = 0;
virtual IOTupleType dataTuple() = 0;
// solve the problem for eoc loop 'loop'
virtual void solve ( const int loop ) = 0;
......
......@@ -161,11 +161,6 @@ namespace Fem
return problem().dataPrefix();
}
auto dataTuple () -> decltype( std::make_tuple( &this->solution() ))
{
return std::make_tuple( &solution_ );
}
virtual SolverMonitorType& monitor()
{
return solverMonitorHandler_.monitor();
......
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