From: bangerth Date: Thu, 7 Mar 2013 13:57:01 +0000 (+0000) Subject: Suppress warnings about unused function arguments. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fheads%2FBranch-7-3;p=dealii-svn.git Suppress warnings about unused function arguments. git-svn-id: https://svn.dealii.org/branches/releases/Branch-7-3@28788 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 59708663cb..5272fba1d7 100644 --- a/deal.II/source/dofs/dof_handler_policy.cc +++ b/deal.II/source/dofs/dof_handler_policy.cc @@ -839,14 +839,19 @@ namespace internal static void renumber_mg_dofs (const std::vector &new_numbers, - const IndexSet &indices, + const IndexSet &indices, DoFHandler<3,spacedim> &dof_handler, - const unsigned int level, - const bool check_validity) + const unsigned int level, + const bool check_validity) { - //TODO - AssertThrow(false, ExcNotImplemented()); + // TODO + (void) new_numbers; + (void) indices; + (void) dof_handler; + (void) level; + (void) check_validity; + AssertThrow(false, ExcNotImplemented()); }