From 82e627c2ec9fffe745af84c7d89d8340a9c0d365 Mon Sep 17 00:00:00 2001 From: Jonathan Youett <youett@math.fu-berlin.de> Date: Wed, 24 Jun 2015 15:53:39 +0200 Subject: [PATCH] Remove unused typedefs --- dune/fufem/estimators/hierarchicestimatorbase.hh | 2 +- dune/fufem/grid/hierarchic-approximation.hh | 3 --- dune/fufem/mechanics/newpfeassembler.hh | 1 - 3 files changed, 1 insertion(+), 5 deletions(-) diff --git a/dune/fufem/estimators/hierarchicestimatorbase.hh b/dune/fufem/estimators/hierarchicestimatorbase.hh index d1356d6e..62d5ed30 100644 --- a/dune/fufem/estimators/hierarchicestimatorbase.hh +++ b/dune/fufem/estimators/hierarchicestimatorbase.hh @@ -22,7 +22,7 @@ class HierarchicEstimatorBase typedef typename EnlargedGlobalBasis::GridView GridView; typedef typename GridView::template Codim<0>::Iterator ElementIterator; - typedef typename GridView::template Codim<0>::EntityPointer ElementPointer; + typedef typename GridView::template Codim<0>::Entity Element; typedef typename GridView::IntersectionIterator IntersectionIterator; enum {dim = GridView::dimension}; diff --git a/dune/fufem/grid/hierarchic-approximation.hh b/dune/fufem/grid/hierarchic-approximation.hh index ef354e12..b9e26dbd 100644 --- a/dune/fufem/grid/hierarchic-approximation.hh +++ b/dune/fufem/grid/hierarchic-approximation.hh @@ -41,9 +41,6 @@ template <class Grid, class IS> class HierarchicApproximation { //! get entity from the grid typedef typename Grid::template Codim<0>::Entity Entity; - //! type of EntityPointer - typedef typename Grid::template Codim<0>::EntityPointer EntityPointer; - //! type of HierarchicIterator typedef typename Grid::HierarchicIterator HierarchicIterator; diff --git a/dune/fufem/mechanics/newpfeassembler.hh b/dune/fufem/mechanics/newpfeassembler.hh index 8d7cb8d9..52184dc3 100644 --- a/dune/fufem/mechanics/newpfeassembler.hh +++ b/dune/fufem/mechanics/newpfeassembler.hh @@ -35,7 +35,6 @@ class NewPFEAssembler : public LocalOperatorAssembler < GridType, TrialLocalFE, typedef typename LocalOperatorAssembler < GridType, TrialLocalFE, AnsatzLocalFE, T >::Element Element; typedef typename LocalOperatorAssembler < GridType, TrialLocalFE, AnsatzLocalFE, T >::BoolMatrix BoolMatrix; typedef typename LocalOperatorAssembler < GridType, TrialLocalFE, AnsatzLocalFE, T >::LocalMatrix LocalMatrix; -// typedef typename GridType::template Codim<0>::Entity::EntityPointer ElementPointer; // typedef typename LocalOperatorAssembler < GridType ,T >::BoolMatrix BoolMatrix; // typedef typename Dune::Matrix<T> LocalMatrix; -- GitLab