From 00f5bdfd8db5bae4c60cf1e80abe1669ee1ac460 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Sat, 8 Sep 2007 01:37:44 +0000 Subject: [PATCH] Make an object const git-svn-id: https://svn.dealii.org/trunk@15166 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/source/fe/fe_q.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) { -- 2.39.5