From: David Wells Date: Wed, 22 Mar 2023 12:10:45 +0000 (-0400) Subject: Remove an extra 'namespace dealii'. X-Git-Tag: v9.5.0-rc1~433^2~4 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7f7f9d8788224a0527d7fc42d45cf688a77861a0;p=dealii.git Remove an extra 'namespace dealii'. --- diff --git a/source/base/quadrature_lib.cc b/source/base/quadrature_lib.cc index 2e89cdab77..3e28a1e9a0 100644 --- a/source/base/quadrature_lib.cc +++ b/source/base/quadrature_lib.cc @@ -2239,54 +2239,46 @@ template class QWitherdenVincentSimplex<1>; template class QWitherdenVincentSimplex<2>; template class QWitherdenVincentSimplex<3>; -DEAL_II_NAMESPACE_CLOSE +#ifndef DOXYGEN +template Quadrature<1> +QSimplex<1>::compute_affine_transformation( + const std::array, 1 + 1> &vertices) const; -namespace dealii -{ - template Quadrature<1> - QSimplex<1>::compute_affine_transformation( - const std::array, 1 + 1> &vertices) const; +template Quadrature<2> +QSimplex<1>::compute_affine_transformation( + const std::array, 1 + 1> &vertices) const; - template Quadrature<2> - QSimplex<1>::compute_affine_transformation( - const std::array, 1 + 1> &vertices) const; +template Quadrature<2> +QSimplex<2>::compute_affine_transformation( + const std::array, 2 + 1> &vertices) const; - template Quadrature<2> - QSimplex<2>::compute_affine_transformation( - const std::array, 2 + 1> &vertices) const; +template Quadrature<3> +QSimplex<1>::compute_affine_transformation( + const std::array, 1 + 1> &vertices) const; - template Quadrature<3> - QSimplex<1>::compute_affine_transformation( - const std::array, 1 + 1> &vertices) const; +template Quadrature<3> +QSimplex<2>::compute_affine_transformation( + const std::array, 2 + 1> &vertices) const; - template Quadrature<3> - QSimplex<2>::compute_affine_transformation( - const std::array, 2 + 1> &vertices) const; +template Quadrature<3> +QSimplex<3>::compute_affine_transformation( + const std::array, 3 + 1> &vertices) const; - template Quadrature<3> - QSimplex<3>::compute_affine_transformation( - const std::array, 3 + 1> &vertices) const; -} // namespace dealii +template Quadrature<3> +QSimplex<1>::mapped_quadrature( + const std::vector, 1 + 1>> &simplices) const; -namespace dealii -{ - template Quadrature<2> - QSimplex<1>::mapped_quadrature( - const std::vector, 1 + 1>> &simplices) const; - - template Quadrature<3> - QSimplex<1>::mapped_quadrature( - const std::vector, 1 + 1>> &simplices) const; - - template Quadrature<2> - QSimplex<2>::mapped_quadrature( - const std::vector, 2 + 1>> &simplices) const; - - template Quadrature<3> - QSimplex<2>::mapped_quadrature( - const std::vector, 2 + 1>> &simplices) const; - - template Quadrature<3> - QSimplex<3>::mapped_quadrature( - const std::vector, 3 + 1>> &simplices) const; -} // namespace dealii +template Quadrature<2> +QSimplex<2>::mapped_quadrature( + const std::vector, 2 + 1>> &simplices) const; + +template Quadrature<3> +QSimplex<2>::mapped_quadrature( + const std::vector, 2 + 1>> &simplices) const; + +template Quadrature<3> +QSimplex<3>::mapped_quadrature( + const std::vector, 3 + 1>> &simplices) const; +#endif + +DEAL_II_NAMESPACE_CLOSE