From a6a0e900d70121330d2995417032aff4df7255ba Mon Sep 17 00:00:00 2001 From: Peter Munch Date: Wed, 2 Dec 2020 20:55:09 +0100 Subject: [PATCH] Fix namespace --- .../matrix_free/shape_info.templates.h | 26 +++++++++---------- 1 file changed, 12 insertions(+), 14 deletions(-) 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) == -- 2.39.5