From e97642d1dc7667b8532743c3eea4c68dc11affa9 Mon Sep 17 00:00:00 2001 From: bangerth Date: Thu, 14 Jun 2007 08:28:41 +0000 Subject: [PATCH] Hide implementation details git-svn-id: https://svn.dealii.org/trunk@14781 0785d39b-7218-0410-832d-ea1e28bc413d --- .../lac/include/lac/compressed_sparsity_pattern.h | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/deal.II/lac/include/lac/compressed_sparsity_pattern.h b/deal.II/lac/include/lac/compressed_sparsity_pattern.h index f6d79cb5d9..f199538b77 100644 --- a/deal.II/lac/include/lac/compressed_sparsity_pattern.h +++ b/deal.II/lac/include/lac/compressed_sparsity_pattern.h @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 by the deal.II authors +// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -388,6 +388,13 @@ class CompressedSparsityPattern : public Subscriptor */ struct Line { + private: + /** + * Size of the cache. + */ + static const unsigned int cache_size = 8; + + public: /** * Storage for the column indices of * this row, unless they are still in @@ -396,11 +403,6 @@ class CompressedSparsityPattern : public Subscriptor */ mutable std::vector entries; - /** - * Size of the cache. - */ - static const unsigned int cache_size = 8; - /** * Cache of entries that have not yet * been written to #entries; -- 2.39.5