From ff3f021040c575ca877ddcca059aea5b6e72e459 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 20 Dec 2005 13:27:56 +0000 Subject: [PATCH] Move things out of a bogus namespace. git-svn-id: https://svn.dealii.org/trunk@11895 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/source/dofs/dof_levels.cc | 36 +++++++++++------------ 1 file changed, 17 insertions(+), 19 deletions(-) diff --git a/deal.II/deal.II/source/dofs/dof_levels.cc b/deal.II/deal.II/source/dofs/dof_levels.cc index 6136da7494..9915d5e0ee 100644 --- a/deal.II/deal.II/source/dofs/dof_levels.cc +++ b/deal.II/deal.II/source/dofs/dof_levels.cc @@ -16,30 +16,28 @@ #include -namespace internal + +unsigned int +DoFLevel<1>::memory_consumption () const { - - unsigned int - DoFLevel<1>::memory_consumption () const - { - return MemoryConsumption::memory_consumption (line_dofs); - } + return MemoryConsumption::memory_consumption (line_dofs); +} - unsigned int - DoFLevel<2>::memory_consumption () const - { - return (DoFLevel<1>::memory_consumption () + - MemoryConsumption::memory_consumption (quad_dofs)); - } +unsigned int +DoFLevel<2>::memory_consumption () const +{ + return (DoFLevel<1>::memory_consumption () + + MemoryConsumption::memory_consumption (quad_dofs)); +} - unsigned int - DoFLevel<3>::memory_consumption () const - { - return (DoFLevel<2>::memory_consumption () + - MemoryConsumption::memory_consumption (hex_dofs)); - } +unsigned int +DoFLevel<3>::memory_consumption () const +{ + return (DoFLevel<2>::memory_consumption () + + MemoryConsumption::memory_consumption (hex_dofs)); } + -- 2.39.5