Skip to content
Snippets Groups Projects
Commit f3be6483 authored by Robert K's avatar Robert K
Browse files

[cleanup][shared_ptr] shared_ptr --> std::shared_ptr

parent 3676eb65
No related branches found
No related tags found
1 merge request!6Latest improvements in dune-fem-dg
Pipeline #24808 failed
......@@ -73,7 +73,7 @@ namespace Fem
{}
//solution
shared_ptr< DiscreteFunction > solution() const
std::shared_ptr< DiscreteFunction > solution() const
{
return solution_->shared();
}
......
......@@ -220,7 +220,7 @@ namespace Fem
typedef typename AssemblerType::ContainerType ContainerType;
template< class ContainerImp >
StokesSigmaEstimator( const shared_ptr< ContainerImp >& cont,
StokesSigmaEstimator( const std::shared_ptr< ContainerImp >& cont,
const BaseAssemblerType& ass,
const AssemblerType& assembler,
const std::string keyPrefix = "" )
......@@ -278,7 +278,7 @@ namespace Fem
typedef typename PAdaptivityType::PolOrderContainer PolOrderContainer;
template< class ContainerImp >
StokesPAdaptivity( const shared_ptr< ContainerImp >& cont, BaseAssemblerType& ass, AssemblerType& assembler, const std::string name = "" )
StokesPAdaptivity( const std::shared_ptr< ContainerImp >& cont, BaseAssemblerType& ass, AssemblerType& assembler, const std::string name = "" )
: pAdapt_( (*cont)(std::make_tuple(_0),std::make_tuple(_0) ), ass, name ),
polOrderContainer_( (*cont)(_0)->solution()->gridPart().grid(), 0 ),
space_( (*cont)(_1)->solution()->space() ),
......
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