From: bangerth Date: Tue, 5 Jan 2010 15:08:51 +0000 (+0000) Subject: Clean up a little bit. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8f1b45bb3b979f24ca7b25dcc7f44c94db3387e8;p=dealii-svn.git Clean up a little bit. git-svn-id: https://svn.dealii.org/trunk@20291 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/dofs/dof_tools.cc b/deal.II/deal.II/source/dofs/dof_tools.cc index 4cb761a01f..fcc25815ae 100644 --- a/deal.II/deal.II/source/dofs/dof_tools.cc +++ b/deal.II/deal.II/source/dofs/dof_tools.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 by the deal.II authors +// Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -4098,10 +4098,10 @@ DoFTools::count_dofs_per_component ( template void -DoFTools::count_dofs_per_block ( - const DoFHandler& dof_handler, - std::vector& dofs_per_block, - std::vector target_block) +DoFTools:: +count_dofs_per_block (const DoFHandler& dof_handler, + std::vector &dofs_per_block, + std::vector target_block) { const FiniteElement& fe = dof_handler.get_fe(); @@ -4144,8 +4144,8 @@ DoFTools::count_dofs_per_block ( // of dofs in each block // separately. do so in parallel std::vector dofs_by_block (dof_handler.n_dofs()); - internal::extract_dofs_by_component (dof_handler, std::vector(), true, - dofs_by_block); + internal::extract_dofs_by_component (dof_handler, std::vector(), + true, dofs_by_block); // next count what we got for (unsigned int block=0;block void -DoFTools::count_dofs_per_component ( - const DoFHandler& dof_handler, - std::vector& dofs_per_component, - std::vector target_component) +DoFTools:: +count_dofs_per_component (const DoFHandler &dof_handler, + std::vector &dofs_per_component, + std::vector target_component) { - count_dofs_per_component (dof_handler, dofs_per_component, false, target_component); + count_dofs_per_component (dof_handler, dofs_per_component, + false, target_component); }