From: bangerth Date: Thu, 7 Mar 2013 13:57:38 +0000 (+0000) Subject: A different fix to suppress warnings about unused function arguments. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ac147f912d3c89f05d64f38a5bdafb170b561389;p=dealii-svn.git A different fix to suppress warnings about unused function arguments. git-svn-id: https://svn.dealii.org/trunk@28789 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 5272fba1d7..fe7cd14a99 100644 --- a/deal.II/source/dofs/dof_handler_policy.cc +++ b/deal.II/source/dofs/dof_handler_policy.cc @@ -838,19 +838,13 @@ namespace internal template static void - renumber_mg_dofs (const std::vector &new_numbers, - const IndexSet &indices, - DoFHandler<3,spacedim> &dof_handler, - const unsigned int level, - const bool check_validity) + renumber_mg_dofs (const std::vector &, + const IndexSet &, + DoFHandler<3,spacedim> &, + const unsigned int , + const bool ) { - // TODO - (void) new_numbers; - (void) indices; - (void) dof_handler; - (void) level; - (void) check_validity; - + // TODO AssertThrow(false, ExcNotImplemented()); }