Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make FEValuesViews::* objects movable. #16298

Merged
merged 1 commit into from
Nov 27, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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