From 995a433dee9cf2d09ba6b9fcdcc93b600634ac0c Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 18 Sep 2015 11:13:01 -0500 Subject: [PATCH] Remove a function now no longer needed. --- include/deal.II/fe/mapping_q.h | 6 ------ source/fe/mapping_q.cc | 13 ------------- 2 files changed, 19 deletions(-) diff --git a/include/deal.II/fe/mapping_q.h b/include/deal.II/fe/mapping_q.h index 3dc87c4699..f4ed9fc611 100644 --- a/include/deal.II/fe/mapping_q.h +++ b/include/deal.II/fe/mapping_q.h @@ -286,12 +286,6 @@ protected: */ std_cxx11::unique_ptr > q1_mapping; - //TODO: Remove again -- all the function does is bypass the inherited function from MappingQ1 and go back to the one in the MappingQGeneric base class - virtual - void - compute_mapping_support_points (const typename Triangulation::cell_iterator &cell, - std::vector > &a) const; - /** * Declare other MappingQ classes friends. */ diff --git a/source/fe/mapping_q.cc b/source/fe/mapping_q.cc index 863fa940eb..fc3b674652 100644 --- a/source/fe/mapping_q.cc +++ b/source/fe/mapping_q.cc @@ -302,17 +302,6 @@ fill_fe_subface_values (const typename Triangulation::cell_iterato } -template -void -MappingQ:: -compute_mapping_support_points(const typename Triangulation::cell_iterator &cell, - std::vector > &a) const -{ - MappingQGeneric::compute_mapping_support_points (cell, a); -} - - - template void MappingQ:: @@ -514,8 +503,6 @@ transform_real_to_unit_cell (const typename Triangulation::cell_it std_cxx11::unique_ptr mdata (get_data(update_flags, point_quadrature)); - mdata->use_mapping_q1_on_current_cell = false; - compute_mapping_support_points (cell, mdata->mapping_support_points); return this->transform_real_to_unit_cell_internal(cell, p, initial_p_unit, *mdata); -- 2.39.5