From 1265bed522eac7007dcd121e1d9898087415bcd4 Mon Sep 17 00:00:00 2001 From: Oliver Sander <sander@igpm.rwth-aachen.de> Date: Fri, 6 Feb 2015 16:48:00 +0000 Subject: [PATCH] Use static_assert instead of dune_static_assert Patch by Jonathan Youett [[Imported from SVN: r10053]] --- dune/gfe/rodfactory.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dune/gfe/rodfactory.hh b/dune/gfe/rodfactory.hh index 24ad9f86..55e60b38 100644 --- a/dune/gfe/rodfactory.hh +++ b/dune/gfe/rodfactory.hh @@ -17,7 +17,7 @@ template <class GridView> 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: -- GitLab