Skip to content

Commit

Permalink
Merge pull request #16298 from bangerth/movable
Browse files Browse the repository at this point in the history
  • Loading branch information
masterleinad committed Nov 27, 2023
2 parents 3b22468 + 818b776 commit 60619ae
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions include/deal.II/fe/fe_values_views.h
Original file line number Diff line number Diff line change
Expand Up @@ -548,13 +548,13 @@ namespace FEValuesViews
/**
* A pointer to the FEValuesBase object we operate on.
*/
const SmartPointer<const FEValuesBase<dim, spacedim>> fe_values;
SmartPointer<const FEValuesBase<dim, spacedim>> 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.
Expand Down Expand Up @@ -1271,13 +1271,13 @@ namespace FEValuesViews
/**
* A pointer to the FEValuesBase object we operate on.
*/
const SmartPointer<const FEValuesBase<dim, spacedim>> fe_values;
SmartPointer<const FEValuesBase<dim, spacedim>> 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.
Expand Down Expand Up @@ -1584,13 +1584,13 @@ namespace FEValuesViews
/**
* A pointer to the FEValuesBase object we operate on.
*/
const SmartPointer<const FEValuesBase<dim, spacedim>> fe_values;
SmartPointer<const FEValuesBase<dim, spacedim>> 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.
Expand Down Expand Up @@ -1958,13 +1958,13 @@ namespace FEValuesViews
/**
* A pointer to the FEValuesBase object we operate on.
*/
const SmartPointer<const FEValuesBase<dim, spacedim>> fe_values;
SmartPointer<const FEValuesBase<dim, spacedim>> 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.
Expand Down

0 comments on commit 60619ae

Please sign in to comment.