From f64473fce140c92b8f13daa3ac4a11f3c644b0cf Mon Sep 17 00:00:00 2001 From: Oliver Sander <sander@igpm.rwth-aachen.de> Date: Fri, 7 May 2010 15:48:47 +0000 Subject: [PATCH] make block structure protected [[Imported from SVN: r3321]] --- dune/solvers/iterationsteps/linegsstep.hh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dune/solvers/iterationsteps/linegsstep.hh b/dune/solvers/iterationsteps/linegsstep.hh index c3216ec8..1dfe2a28 100755 --- a/dune/solvers/iterationsteps/linegsstep.hh +++ b/dune/solvers/iterationsteps/linegsstep.hh @@ -13,11 +13,13 @@ template<class OperatorType, typedef typename DiscFuncType::block_type VectorBlock; + enum {BlockSize = VectorBlock::dimension}; + + protected: + // Describes the ordering of the degrees of freedom in 1d blocks std::vector<std::vector<unsigned int> > blockStructure_; - enum {BlockSize = VectorBlock::dimension}; - public: //! Default constructor. Doesn't init anything -- GitLab