From 300891d8effee270855e882f306685747e91613d Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Wed, 8 Jul 2009 22:19:06 +0000 Subject: [PATCH] Check in forgotten file. git-svn-id: https://svn.dealii.org/trunk@19051 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/include/numerics/point_value_history.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/deal.II/deal.II/include/numerics/point_value_history.h b/deal.II/deal.II/include/numerics/point_value_history.h index 3606ceb48a..77a1b554b8 100644 --- a/deal.II/deal.II/include/numerics/point_value_history.h +++ b/deal.II/deal.II/include/numerics/point_value_history.h @@ -60,7 +60,8 @@ namespace internal class PointGeometryData { public: - PointGeometryData(std::vector > new_locations, std::vector new_sol_indices); + PointGeometryData(const std::vector > &new_locations, + const std::vector &new_sol_indices); std::vector > locations; std::vector solution_indices; }; @@ -148,7 +149,7 @@ class PointValueHistory * external input or logging solver * performance data. */ - PointValueHistory (unsigned int n_independent_variables = 0); + PointValueHistory (const unsigned int n_independent_variables = 0); /** * Constructor linking the class to a @@ -181,7 +182,8 @@ class PointValueHistory * external input or logging solver * performance data. */ - PointValueHistory (const DoFHandler & dof_handler, unsigned int n_independent_variables = 0); + PointValueHistory (const DoFHandler & dof_handler, + const unsigned int n_independent_variables = 0); /** * Copy constructor explicitly provided, -- 2.39.5