From: Daniel Arndt Date: Tue, 19 Sep 2017 15:40:42 +0000 (+0200) Subject: Remove unused private function DoFHandler::reserve_space X-Git-Tag: v9.0.0-rc1~1059^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F5113%2Fhead;p=dealii.git Remove unused private function DoFHandler::reserve_space --- diff --git a/include/deal.II/dofs/dof_handler.h b/include/deal.II/dofs/dof_handler.h index 49c86e92ab..d8e8a45fea 100644 --- a/include/deal.II/dofs/dof_handler.h +++ b/include/deal.II/dofs/dof_handler.h @@ -1049,11 +1049,6 @@ private: */ void clear_mg_space (); - /** - * Allocate space that will be used by distribute_dofs(). - */ - void reserve_space (); - template types::global_dof_index get_dof_index (const unsigned int obj_level, const unsigned int obj_index, diff --git a/source/dofs/dof_handler.cc b/source/dofs/dof_handler.cc index 1f8dfa288b..b375cd0348 100644 --- a/source/dofs/dof_handler.cc +++ b/source/dofs/dof_handler.cc @@ -1057,14 +1057,6 @@ void DoFHandler::distribute_mg_dofs () -template -void DoFHandler::reserve_space () -{ - //TODO: move this to distribute_mg_dofs and remove function -} - - - template void DoFHandler::clear_mg_space () {