Skip to content
Snippets Groups Projects
Commit deb6cd63 authored by Robert Kloefkorn's avatar Robert Kloefkorn
Browse files

dune_static_assert --> static_assert.

parent b9f75f33
No related branches found
No related tags found
No related merge requests found
...@@ -9,7 +9,6 @@ ...@@ -9,7 +9,6 @@
#include <dune/common/fvector.hh> #include <dune/common/fvector.hh>
#include <dune/common/densematrix.hh> #include <dune/common/densematrix.hh>
#include <dune/common/precision.hh> #include <dune/common/precision.hh>
#include <dune/common/static_assert.hh>
#include <dune/common/std/constexpr.hh> #include <dune/common/std/constexpr.hh>
namespace Dune namespace Dune
......
...@@ -33,7 +33,7 @@ namespace Dune ...@@ -33,7 +33,7 @@ namespace Dune
class DGMassInverseMassImplementation class DGMassInverseMassImplementation
{ {
public: public:
dune_static_assert((ScalarDiscreteFunctionSpace::dimRange == 1), "dimRange of ScalarSpace > 1"); static_assert((ScalarDiscreteFunctionSpace::dimRange == 1), "dimRange of ScalarSpace > 1");
//! \brief discrete function space type //! \brief discrete function space type
typedef ScalarDiscreteFunctionSpace ScalarDiscreteFunctionSpaceType ; typedef ScalarDiscreteFunctionSpace ScalarDiscreteFunctionSpaceType ;
typedef typename ScalarDiscreteFunctionSpaceType::RangeType ScalarRangeType; typedef typename ScalarDiscreteFunctionSpaceType::RangeType ScalarRangeType;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment