From: Wolfgang Bangerth Date: Sun, 18 Jun 2017 01:43:50 +0000 (-0600) Subject: Remove a commented out piece of code. X-Git-Tag: v9.0.0-rc1~1487^2~5 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5bf0e4c96674cd22185c3e5a8b6a65f215a70129;p=dealii.git Remove a commented out piece of code. The code suggests that one could update the cell DoF cache, but the cache only exists for non-MG DoF indices, whereas the function where the comment resides deals with MG level DoFs. --- diff --git a/source/dofs/dof_handler_policy.cc b/source/dofs/dof_handler_policy.cc index 31fad1682f..8eca69cace 100644 --- a/source/dofs/dof_handler_policy.cc +++ b/source/dofs/dof_handler_policy.cc @@ -460,13 +460,6 @@ namespace internal next_free_dof = Implementation::distribute_mg_dofs_on_cell (dof_handler, cell, next_free_dof); -// // update the cache used -// // for cell dof indices -// for (typename DoFHandler::level_cell_iterator -// cell = dof_handler.begin(); cell != dof_handler.end(); ++cell) -// if (cell->subdomain_id() != numbers::artificial_subdomain_id) -// cell->update_cell_dof_indices_cache (); - // finally restore the user flags const_cast &>(tria).load_user_flags(user_flags);