Skip to content
Snippets Groups Projects
Commit 84d8dd28 authored by Uli Sack's avatar Uli Sack Committed by usack
Browse files

INTERFACECHANGE: changed type of NormPointerVector to std::vector< Dune::shared_ptr<...> > >

[[Imported from SVN: r7057]]
parent 50ee728a
No related branches found
No related tags found
No related merge requests found
......@@ -11,7 +11,8 @@ template <class VectorType>
class BlockNorm: public Norm<VectorType>
{
public:
typedef typename std::vector<const Norm<typename VectorType::block_type>* > NormPointerVector;
// typedef typename std::vector<const Norm<typename VectorType::block_type>* > NormPointerVector;
typedef std::vector< Dune::shared_ptr<const Norm<typename VectorType::block_type> > > NormPointerVector;
BlockNorm(const NormPointerVector& norms) :
norms_(norms)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment