From 9ab209eaa06e6395992d99ab411f9a741b83baf4 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 9 Sep 2019 11:39:13 -0600 Subject: [PATCH] Make a variable 'const'. --- include/deal.II/fe/fe_poly_tensor.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/deal.II/fe/fe_poly_tensor.h b/include/deal.II/fe/fe_poly_tensor.h index f50a073936..fef42ba72c 100644 --- a/include/deal.II/fe/fe_poly_tensor.h +++ b/include/deal.II/fe/fe_poly_tensor.h @@ -471,10 +471,10 @@ protected: /** - * The polynomial space. Its type is given by the template parameter - * PolynomialType. + * A copy of the object passed to the constructor that describes the + * polynomial space. */ - std::unique_ptr> poly_space; + const std::unique_ptr> poly_space; /** * The inverse of the matrix aij of node values -- 2.39.5