From: Peter Munch Date: Wed, 2 Dec 2020 19:55:09 +0000 (+0100) Subject: Fix namespace X-Git-Tag: v9.3.0-rc1~814^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F11296%2Fhead;p=dealii.git Fix namespace --- diff --git a/include/deal.II/matrix_free/shape_info.templates.h b/include/deal.II/matrix_free/shape_info.templates.h index 7b617551c1..636127c5ba 100644 --- a/include/deal.II/matrix_free/shape_info.templates.h +++ b/include/deal.II/matrix_free/shape_info.templates.h @@ -375,13 +375,12 @@ namespace internal // inverse_shape_values_eo cannot be filled std::vector scalar_lexicographic; - internal::MatrixFreeFunctions::get_element_type_specific_information( - fe_in, - fe, - base_element_number, - element_type, - scalar_lexicographic, - lexicographic_numbering); + get_element_type_specific_information(fe_in, + fe, + base_element_number, + element_type, + scalar_lexicographic, + lexicographic_numbering); univariate_shape_data.element_type = this->element_type; @@ -452,13 +451,12 @@ namespace internal Assert(fe->n_components() == 1, ExcMessage("Expected a scalar element")); - internal::MatrixFreeFunctions::get_element_type_specific_information( - fe_in, - fe, - base_element_number, - element_type, - scalar_lexicographic, - lexicographic_numbering); + get_element_type_specific_information(fe_in, + fe, + base_element_number, + element_type, + scalar_lexicographic, + lexicographic_numbering); // to evaluate 1D polynomials, evaluate along the line with the first // unit support point, assuming that fe.shape_value(0,unit_point) ==