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

Use static_assert instead of dune_static_assert

[[Imported from SVN: r9980]]
parent 253d3308
No related branches found
No related tags found
No related merge requests found
......@@ -17,7 +17,7 @@
template <class GridView, int spaceDim>
class RodAssembler
{
dune_static_assert(spaceDim==2 || spaceDim==3,
static_assert(spaceDim==2 || spaceDim==3,
"You can only instantiate the class RodAssembler for 2d and 3d spaces");
};
......
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