Skip to content
Snippets Groups Projects
Commit daca5005 authored by Ansgar Burchardt's avatar Ansgar Burchardt
Browse files

Use std::is_same instead of Dune::is_same.

parent c86a94a3
No related branches found
No related tags found
No related merge requests found
...@@ -3,6 +3,8 @@ ...@@ -3,6 +3,8 @@
#ifndef DUNE_FUFEM_FUNCTIONTOOLS_BOUNDARYDOFS_HH #ifndef DUNE_FUFEM_FUNCTIONTOOLS_BOUNDARYDOFS_HH
#define DUNE_FUFEM_FUNCTIONTOOLS_BOUNDARYDOFS_HH #define DUNE_FUFEM_FUNCTIONTOOLS_BOUNDARYDOFS_HH
#include <type_traits>
#include <dune/common/bitsetvector.hh> #include <dune/common/bitsetvector.hh>
#include <dune/common/version.hh> #include <dune/common/version.hh>
...@@ -20,7 +22,7 @@ void constructBoundaryDofs(const BoundaryPatch<GridView>& boundaryPatch, ...@@ -20,7 +22,7 @@ void constructBoundaryDofs(const BoundaryPatch<GridView>& boundaryPatch,
Dune::BitSetVector<blocksize>& boundaryDofs) Dune::BitSetVector<blocksize>& boundaryDofs)
{ {
// Check consistency of the input // Check consistency of the input
static_assert((Dune::is_same<GridView, typename Basis::GridView>::value), static_assert((std::is_same<GridView, typename Basis::GridView>::value),
"BoundaryPatch and global basis must be for the same grid view!"); "BoundaryPatch and global basis must be for the same grid view!");
// //////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment