From 53354ee0e36073d0e74a3167f9ab9f351377e890 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Kl=C3=B6fkorn?= <robertk@dune-project.org> Date: Fri, 3 Feb 2006 16:54:13 +0000 Subject: [PATCH] minor change. [[Imported from SVN: r3995]] --- fem/common/discretefunctionspace.hh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/fem/common/discretefunctionspace.hh b/fem/common/discretefunctionspace.hh index e5a956144..17457369d 100644 --- a/fem/common/discretefunctionspace.hh +++ b/fem/common/discretefunctionspace.hh @@ -3,7 +3,10 @@ #ifndef DUNE_DISCRETEFUNCTIONSPACE_HH #define DUNE_DISCRETEFUNCTIONSPACE_HH +//- Dune includes #include <dune/common/functionspace.hh> + +//- local includes #include "basefunctions.hh" namespace Dune { @@ -71,7 +74,7 @@ namespace Dune { //! return conversion from geometry to identifier static IdentifierType fromGeo(int dimension, NewGeometryType geo) { - switch(dim) { + switch(dimension) { case 0 : return Vertex; case 1 : return Line; case 2 : -- GitLab