Skip to content
Snippets Groups Projects
Commit fd8ab91c authored by Robert Klöfkorn's avatar Robert Klöfkorn
Browse files

Added const version of getRealEntity, for the compiler not to bitch.

[[Imported from SVN: r1611]]
parent fc4be3f6
No related branches found
No related tags found
No related merge requests found
......@@ -295,6 +295,11 @@ namespace Dune {
return entity.realEntity;
}
template <int cd>
const OneDGridEntity<cd,dim,const OneDGrid>& getRealEntity(const typename Traits::template codim<cd>::Entity& entity) const {
return entity.realEntity;
}
//! The type of grid refinement currently in use
RefinementType refinementType_;
......
......@@ -891,6 +891,9 @@ namespace Dune {
template<int codim>
SEntity<codim,dim,const SGrid<dim,dimworld> >& getRealEntity(typename Traits::template codim<codim>::Entity& e );
template<int codim>
const SEntity<codim,dim,const SGrid<dim,dimworld> >& getRealEntity(const typename Traits::template codim<codim>::Entity& e ) const;
template<int codim_, int dim_, class GridImp_, template<int,int,class> class EntityImp_>
friend class Entity;
......
......@@ -1706,6 +1706,10 @@ namespace Dune {
YaspEntity<codim,dim,const YaspGrid<dim,dimworld> >&
getRealEntity(typename Traits::template codim<codim>::Entity& e );
template<int codim>
const YaspEntity<codim,dim,const YaspGrid<dim,dimworld> >&
getRealEntity(const typename Traits::template codim<codim>::Entity& e ) const ;
template<int codim_, int dim_, class GridImp_, template<int,int,class> class EntityImp_>
friend class Entity;
......
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