diff --git a/dune/geometry/type.hh b/dune/geometry/type.hh index 7f8a147a23de0b21de870504e7dd42cedfe57e5b..18727285743fe4ea1a104ed0aca95a7e634aa4b6 100644 --- a/dune/geometry/type.hh +++ b/dune/geometry/type.hh @@ -413,25 +413,6 @@ namespace Dune DUNE_UNUSED_PARAMETER(t); } - /** \brief Constructor for vertices and segments */ - DUNE_DEPRECATED_MSG("GeometryType(unsigned dim) is deprecated in DUNE 2.7, please use Dune::GeometryTypes::cube(dim) instead") - explicit GeometryType(unsigned int dim) - : dim_(dim), none_(false), topologyId_(0) - { - assert(dim < 2); - } - - /** \brief Constructor for vertices and segments */ - // We need this constructor for "int" and "unsigned int", - // because otherwise GeometryType(int) would try to call the - // generic GeometryType(TopologyType) constructor - DUNE_DEPRECATED_MSG("GeometryType(dim) is deprecated in DUNE 2.7, please use Dune::GeometryTypes::cube(dim) instead") - explicit GeometryType(int dim) - : dim_(dim), none_(false), topologyId_(0) - { - assert(dim < 2); - } - /** @} */