diff --git a/dune/geometry/referenceelement.hh b/dune/geometry/referenceelement.hh index 45ef39b38e6fa856dbf3bbe562f58264d1445294..910c754a3ecb85936736de043d6448ed5593071c 100644 --- a/dune/geometry/referenceelement.hh +++ b/dune/geometry/referenceelement.hh @@ -22,10 +22,6 @@ namespace Dune { template<typename ctype, int dim> class ReferenceElementImplementation; - // forward declaration for deprecation check reference element type - template<typename ctype, int dim> - class DeprecatedReferenceElement; - // forward declaration for backwards compatibility conversion template<typename ctype, int dim> struct ReferenceElements; @@ -286,17 +282,6 @@ namespace Dune { return *_impl; } -#ifndef DOXYGEN - - DUNE_DEPRECATED_MSG("Capturing reference elements by reference is deprecated in DUNE 2.6. Please store a copy instead.") - operator const DeprecatedReferenceElement<ctype,dimension>&() const - { - return ReferenceElements<ctype,dimension>::deprecated(*this); - } - -#endif // DOXYGEN - - //! Compares for equality with another reference element. bool operator==(const ReferenceElement& r) const {