From: bangerth Date: Sat, 8 Sep 2007 01:37:44 +0000 (+0000) Subject: Make an object const X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6391e72d863846ee496a20073e597d190ccdf3cd;p=dealii-svn.git Make an object const git-svn-id: https://svn.dealii.org/trunk@15166 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/fe/fe_q.cc b/deal.II/deal.II/source/fe/fe_q.cc index c27b9f5dc4..0d49d97f1b 100644 --- a/deal.II/deal.II/source/fe/fe_q.cc +++ b/deal.II/deal.II/source/fe/fe_q.cc @@ -419,7 +419,8 @@ get_face_interpolation_matrix (const FiniteElement &x_source_fe, //TODO: Verify that all faces are the same with respect to // these support points. Furthermore, check if something has to // be done for the face orientation flag in 3D. - Point p = QProjector::project_to_face (quad_face_support, 0).point (i); + const Point p + = QProjector::project_to_face (quad_face_support, 0).point (i); for (unsigned int j=0; jdofs_per_face; ++j) {