From 46de846416e0994330b625f7c4244ea80beb5602 Mon Sep 17 00:00:00 2001 From: David Wells Date: Sat, 4 Mar 2017 12:21:51 -0500 Subject: [PATCH] Remove some unnecessary typenames. These types are fully qualified so we do not need to prefix them with 'typename'. --- source/fe/mapping_q_generic.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/fe/mapping_q_generic.cc b/source/fe/mapping_q_generic.cc index a7a48963d6..4bb343696a 100644 --- a/source/fe/mapping_q_generic.cc +++ b/source/fe/mapping_q_generic.cc @@ -440,7 +440,7 @@ namespace internal void compute_shape_function_values_hardcode (const unsigned int n_shape_functions, const std::vector > &unit_points, - typename dealii::MappingQGeneric<1,1>::InternalData &data) + dealii::MappingQGeneric<1,1>::InternalData &data) { (void)n_shape_functions; const unsigned int n_points=unit_points.size(); @@ -494,7 +494,7 @@ namespace internal void compute_shape_function_values_hardcode (const unsigned int n_shape_functions, const std::vector > &unit_points, - typename dealii::MappingQGeneric<2,2>::InternalData &data) + dealii::MappingQGeneric<2,2>::InternalData &data) { (void)n_shape_functions; @@ -572,7 +572,7 @@ namespace internal void compute_shape_function_values_hardcode (const unsigned int n_shape_functions, const std::vector > &unit_points, - typename dealii::MappingQGeneric<3,3>::InternalData &data) + dealii::MappingQGeneric<3,3>::InternalData &data) { (void)n_shape_functions; const unsigned int n_points=unit_points.size(); -- 2.39.5