From: bangerth Date: Thu, 29 Nov 2012 15:07:56 +0000 (+0000) Subject: Reindent a couple comments. Primarily do so to trigger an automated run of the X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6e19ac49212b4c7197a52248f298af77b6d22497;p=dealii-svn.git Reindent a couple comments. Primarily do so to trigger an automated run of the testsuite to see if the new setup works. git-svn-id: https://svn.dealii.org/trunk@27702 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/source/dofs/dof_handler_policy.cc b/deal.II/source/dofs/dof_handler_policy.cc index 18bf44a47a..8d6aa68f8f 100644 --- a/deal.II/source/dofs/dof_handler_policy.cc +++ b/deal.II/source/dofs/dof_handler_policy.cc @@ -212,14 +212,9 @@ namespace internal /** - * Distribute degrees of - * freedom on all cells, or - * on cells with the - * correct subdomain_id if - * the corresponding - * argument is not equal to - * types::invalid_subdomain_id. Return - * the total number of dofs + * Distribute degrees of freedom on all cells, or on cells with the + * correct subdomain_id if the corresponding argument is not equal to + * types::invalid_subdomain_id. Return the total number of dofs * returned. */ template @@ -233,14 +228,10 @@ namespace internal = dof_handler.get_tria(); Assert (tria.n_levels() > 0, ExcMessage("Empty triangulation")); - // Clear user flags because we will - // need them. But first we save - // them and make sure that we - // restore them later such that at - // the end of this function the - // Triangulation will be in the - // same state as it was at the - // beginning of this function. + // Clear user flags because we will need them. But first we save + // them and make sure that we restore them later such that at the + // end of this function the Triangulation will be in the same state + // as it was at the beginning of this function. std::vector user_flags; tria.save_user_flags(user_flags); const_cast &>(tria).clear_user_flags (); @@ -255,10 +246,11 @@ namespace internal || (cell->subdomain_id() == subdomain_id)) next_free_dof - = Implementation::distribute_dofs_on_cell (dof_handler, cell, next_free_dof); + = Implementation::distribute_dofs_on_cell (dof_handler, + cell, + next_free_dof); - // update the cache used - // for cell dof indices + // update the cache used for cell dof indices for (typename DoFHandler::cell_iterator cell = dof_handler.begin(); cell != dof_handler.end(); ++cell) if (cell->subdomain_id() != types::artificial_subdomain_id)