From 818b7764dad53d03fe55f47db84085181a5bd263 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Sun, 26 Nov 2023 10:23:13 -0700 Subject: [PATCH] Make FEValuesViews::* objects movable. --- include/deal.II/fe/fe_values_views.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/include/deal.II/fe/fe_values_views.h b/include/deal.II/fe/fe_values_views.h index c9b6745af3..2de5def53c 100644 --- a/include/deal.II/fe/fe_values_views.h +++ b/include/deal.II/fe/fe_values_views.h @@ -548,13 +548,13 @@ namespace FEValuesViews /** * A pointer to the FEValuesBase object we operate on. */ - const SmartPointer> fe_values; + SmartPointer> fe_values; /** * The single scalar component this view represents of the FEValuesBase * object. */ - const unsigned int component; + unsigned int component; /** * Store the data about shape functions. @@ -1271,13 +1271,13 @@ namespace FEValuesViews /** * A pointer to the FEValuesBase object we operate on. */ - const SmartPointer> fe_values; + SmartPointer> fe_values; /** * The first component of the vector this view represents of the * FEValuesBase object. */ - const unsigned int first_vector_component; + unsigned int first_vector_component; /** * Store the data about shape functions. @@ -1584,13 +1584,13 @@ namespace FEValuesViews /** * A pointer to the FEValuesBase object we operate on. */ - const SmartPointer> fe_values; + SmartPointer> fe_values; /** * The first component of the vector this view represents of the * FEValuesBase object. */ - const unsigned int first_tensor_component; + unsigned int first_tensor_component; /** * Store the data about shape functions. @@ -1958,13 +1958,13 @@ namespace FEValuesViews /** * A pointer to the FEValuesBase object we operate on. */ - const SmartPointer> fe_values; + SmartPointer> fe_values; /** * The first component of the vector this view represents of the * FEValuesBase object. */ - const unsigned int first_tensor_component; + unsigned int first_tensor_component; /** * Store the data about shape functions. -- 2.39.5