From: Luca Heltai Date: Thu, 17 Sep 2015 20:04:13 +0000 (+0200) Subject: Fixed compilation on mac. X-Git-Tag: v8.4.0-rc2~397^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ac39e46de8181045affc0d528047565135fd0c10;p=dealii.git Fixed compilation on mac. --- diff --git a/source/fe/mapping_q1.cc b/source/fe/mapping_q1.cc index a1ab7c72f0..cf3bd3935c 100644 --- a/source/fe/mapping_q1.cc +++ b/source/fe/mapping_q1.cc @@ -406,7 +406,7 @@ transform_real_to_unit_cell (const typename Triangulation::cell_it // projection to the least square plane determined by the vertices // of the cell std::vector > a; - compute_mapping_support_points (cell,a); + this->compute_mapping_support_points (cell,a); Point initial_p_unit = transform_real_to_unit_cell_initial_guess(a,p); @@ -437,7 +437,7 @@ transform_real_to_unit_cell (const typename Triangulation::cell_it mdata (this->get_data(update_flags, point_quadrature)); - compute_mapping_support_points (cell, mdata->mapping_support_points); + this->compute_mapping_support_points (cell, mdata->mapping_support_points); Assert(mdata->mapping_support_points.size() == GeometryInfo::vertices_per_cell, ExcInternalError()); diff --git a/source/fe/mapping_q_generic.cc b/source/fe/mapping_q_generic.cc index 2cc850d8eb..8f9ffd3e6b 100644 --- a/source/fe/mapping_q_generic.cc +++ b/source/fe/mapping_q_generic.cc @@ -34,6 +34,7 @@ #include #include +#include DEAL_II_NAMESPACE_OPEN