From: Guido Kanschat Date: Wed, 25 Jul 2007 07:38:02 +0000 (+0000) Subject: simplify declarations by removing specializations X-Git-Tag: v8.0.0~10173 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=13f67577a78bd3435aec54c14755fdbdf844667f;p=dealii.git simplify declarations by removing specializations git-svn-id: https://svn.dealii.org/trunk@14869 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/include/numerics/vectors.h b/deal.II/deal.II/include/numerics/vectors.h index 9f07bf08cb..7f927e2497 100644 --- a/deal.II/deal.II/include/numerics/vectors.h +++ b/deal.II/deal.II/include/numerics/vectors.h @@ -620,32 +620,9 @@ class VectorTools const std::vector &component_mask = std::vector()); /** - * Declaration of specialization - * of the previous function for - * 1d and a DoFHandler. - */ - static - void - interpolate_boundary_values (const Mapping<1> &mapping, - const DoFHandler<1> &dof, - const FunctionMap<1>::type &function_map, - std::map &boundary_values, - const std::vector &component_mask = std::vector()); - - /** - * Declaration of specialization - * of the previous function for - * 1d and a hp::DoFHandler(). - */ - static - void - interpolate_boundary_values (const Mapping<1> &mapping, - const hp::DoFHandler<1> &dof, - const FunctionMap<1>::type &function_map, - std::map &boundary_values, - const std::vector &component_mask = std::vector()); - - /** + * @deprecated This function is there mainly + * for backward compatibility. + * * Same function as above, but * taking only one pair of * boundary indicator and @@ -654,8 +631,6 @@ class VectorTools * function with remapped * arguments. * - * This function is there mainly - * for backward compatibility. */ template class DH> static @@ -667,22 +642,6 @@ class VectorTools std::map &boundary_values, const std::vector &component_mask = std::vector()); - /** - * Declaration of specialization - * of the previous function for - * 1d. - */ - template