]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Silence warnings about unused arguments. 959/head
authorWolfgang Bangerth <bangerth@math.tamu.edu>
Wed, 27 May 2015 02:14:37 +0000 (21:14 -0500)
committerWolfgang Bangerth <bangerth@math.tamu.edu>
Wed, 27 May 2015 02:14:37 +0000 (21:14 -0500)
Also explain why we don't need the argument.

source/fe/fe_bernstein.cc

index fd6654524b3ab199041444437b6a8b1cf1acf579..0f637d7a4438bc9f0ecd15acb9339ba6ef6bf55a 100644 (file)
@@ -196,22 +196,28 @@ FE_Bernstein<dim,spacedim>::hp_vertex_dof_identities (const FiniteElement<dim,sp
 
 template <int dim, int spacedim>
 std::vector<std::pair<unsigned int, unsigned int> >
-FE_Bernstein<dim,spacedim>::hp_line_dof_identities (const FiniteElement<dim,spacedim> &fe_other) const
+FE_Bernstein<dim,spacedim>::hp_line_dof_identities (const FiniteElement<dim,spacedim> &) const
 {
   // Since this fe is not interpolatory but on the vertices, we can
   // not identify dofs on lines and on quads even if there are dofs
   // on lines and on quads.
+  //
+  // we also have nothing to say about interpolation to other finite
+  // elements. consequently, we never have anything to say at all
   return std::vector<std::pair<unsigned int, unsigned int> > ();
 }
 
 
 template <int dim, int spacedim>
 std::vector<std::pair<unsigned int, unsigned int> >
-FE_Bernstein<dim,spacedim>::hp_quad_dof_identities (const FiniteElement<dim,spacedim> &fe_other) const
+FE_Bernstein<dim,spacedim>::hp_quad_dof_identities (const FiniteElement<dim,spacedim> &) const
 {
   // Since this fe is not interpolatory but on the vertices, we can
   // not identify dofs on lines and on quads even if there are dofs
   // on lines and on quads.
+  //
+  // we also have nothing to say about interpolation to other finite
+  // elements. consequently, we never have anything to say at all
   return std::vector<std::pair<unsigned int, unsigned int> > ();
 }
 

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.