From: Wolfgang Bangerth Date: Tue, 20 Dec 2005 13:27:56 +0000 (+0000) Subject: Move things out of a bogus namespace. X-Git-Tag: v8.0.0~12760 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ff3f021040c575ca877ddcca059aea5b6e72e459;p=dealii.git Move things out of a bogus namespace. git-svn-id: https://svn.dealii.org/trunk@11895 0785d39b-7218-0410-832d-ea1e28bc413d --- 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)); } +