From 52a90d883ca96920fea43546d5258638952bc0c6 Mon Sep 17 00:00:00 2001 From: Martin Nolte Date: Mon, 29 Jun 2009 09:35:21 +0000 Subject: [PATCH] resolve two warnings [[Imported from SVN: r261]] --- parevolve.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/parevolve.hh b/parevolve.hh index 638eb9b..f185fe6 100644 --- a/parevolve.hh +++ b/parevolve.hh @@ -74,7 +74,7 @@ void parevolve (const G& grid, const M& mapper, V& c, double t, double& dt) const Intersection &intersection = *is; // get geometry type of face - Dune::GeometryType gtf = intersection.intersectionSelfLocal().type(); + Dune::GeometryType gtf = intersection.type(); const Dune::ReferenceElement< ct, dim-1 > &refElement = Dune::ReferenceElements< ct, dim-1 >::general( gtf ); @@ -89,7 +89,7 @@ void parevolve (const G& grid, const M& mapper, V& c, double t, double& dt) // center of face in global coordinates Dune::FieldVector< ct, dimworld > faceglobal - = intersection.intersectionGlobal().global( facelocal ); + = intersection.geometry().global( facelocal ); // evaluate velocity at face center Dune::FieldVector velocity = u(faceglobal,t); -- GitLab