From: Toby D. Young Date: Thu, 7 Mar 2013 11:07:04 +0000 (+0000) Subject: Supress a compiler warning from an empty subroutine. X-Git-Tag: v8.0.0~1082 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=21b0d7bcdd7c685ca2a5c7b151ac013660229e5e;p=dealii.git Supress a compiler warning from an empty subroutine. git-svn-id: https://svn.dealii.org/trunk@28781 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()); }