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

Use static_assert instead of dune_static_assert

Patch by Jonathan Youett

[[Imported from SVN: r10053]]
parent 8d7619ab
No related branches found
No related tags found
No related merge requests found
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
template <class GridView> template <class GridView>
class RodFactory class RodFactory
{ {
dune_static_assert(GridView::dimensionworld==1, "RodFactory is only implemented for grids in a 1d world"); static_assert(GridView::dimensionworld==1, "RodFactory is only implemented for grids in a 1d world");
public: public:
......
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