Skip to content
Snippets Groups Projects

Merge branch 'bugfix/revert-basictype-deprecation-for-2.6' into 'master'

Merged Steffen Müthing requested to merge backport/revert-basictype-deprecation into releases/2.6
2 files
+ 2
6
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 0
4
@@ -277,12 +277,9 @@ namespace Dune
{
public:
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
/** \brief Each entity can be tagged by one of these basic types
* plus its space dimension */
enum
DUNE_DEPRECATED_MSG("BasicType is deprecated and will be removed after DUNE 2.6")
BasicType {
simplex, //!< Simplicial element in any nonnegative dimension
cube, //!< Cube element in any nonnegative dimension
@@ -291,7 +288,6 @@ namespace Dune
extended, //!< Other, more general topology, representable as topologyId
none //!< Even more general topology, cannot be specified by a topologyId. Two GeometryTypes with 'none' type are equal if and only if they have the same dimension.
};
#pragma GCC diagnostic pop
private:
Loading