From cabdc2119fe572e4951e00efa6bb37e79b811117 Mon Sep 17 00:00:00 2001 From: Elias Pipping <elias.pipping@fu-berlin.de> Date: Tue, 22 Nov 2011 15:50:11 +0100 Subject: [PATCH] static int -> int static --- dune/tectonic/myblockproblem.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dune/tectonic/myblockproblem.hh b/dune/tectonic/myblockproblem.hh index da843328..dd085f9a 100644 --- a/dune/tectonic/myblockproblem.hh +++ b/dune/tectonic/myblockproblem.hh @@ -22,7 +22,7 @@ template <class MyConvexProblemTypeTEMPLATE> class MyBlockProblem { typedef typename MyConvexProblemType::LocalVectorType LocalVectorType; typedef typename MyConvexProblemType::LocalMatrixType LocalMatrixType; - static int const block_size = MyConvexProblemType::block_size; + int static const block_size = MyConvexProblemType::block_size; /** \brief Solves one local system using a modified gradient method */ class IterateObject; -- GitLab