Skip to content
Snippets Groups Projects
Commit b4fbe46f authored by Oliver Sander's avatar Oliver Sander Committed by sander
Browse files

Use static_assert instead of dune_static_assert

[[Imported from SVN: r9785]]
parent ac5f9789
No related branches found
No related tags found
No related merge requests found
......@@ -307,7 +307,7 @@ energy(const Entity& element,
/////////////////////////////////////////////////////////
// compute U, the Cosserat strain
/////////////////////////////////////////////////////////
dune_static_assert(dim>=gridDim, "Codim of the grid must be nonnegative");
static_assert(dim>=gridDim, "Codim of the grid must be nonnegative");
//
Dune::FieldMatrix<field_type,dim,dim> R;
......
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