From b4fbe46fbf7dc8d887ef6c0d03e5fcb516461274 Mon Sep 17 00:00:00 2001
From: Oliver Sander <sander@igpm.rwth-aachen.de>
Date: Tue, 17 Jun 2014 13:13:23 +0000
Subject: [PATCH] Use static_assert instead of dune_static_assert

[[Imported from SVN: r9785]]
---
 dune/gfe/cosseratenergystiffness.hh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dune/gfe/cosseratenergystiffness.hh b/dune/gfe/cosseratenergystiffness.hh
index a51ccd85..eeba17e5 100644
--- a/dune/gfe/cosseratenergystiffness.hh
+++ b/dune/gfe/cosseratenergystiffness.hh
@@ -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;
-- 
GitLab