/**
* Copy constructor.
*/
- FEPointEvaluation(FEPointEvaluation &other);
+ FEPointEvaluation(FEPointEvaluation &other) noexcept;
/**
* Move constructor.
*/
- FEPointEvaluation(FEPointEvaluation &&other);
+ FEPointEvaluation(FEPointEvaluation &&other) noexcept;
/**
* Destructor.
template <int n_components_, int dim, int spacedim, typename Number>
FEPointEvaluation<n_components_, dim, spacedim, Number>::FEPointEvaluation(
- FEPointEvaluation<n_components_, dim, spacedim, Number> &other)
+ FEPointEvaluation<n_components_, dim, spacedim, Number> &other) noexcept
: n_q_points(other.n_q_points)
, mapping(other.mapping)
, fe(other.fe)
template <int n_components_, int dim, int spacedim, typename Number>
FEPointEvaluation<n_components_, dim, spacedim, Number>::FEPointEvaluation(
- FEPointEvaluation<n_components_, dim, spacedim, Number> &&other)
+ FEPointEvaluation<n_components_, dim, spacedim, Number> &&other) noexcept
: n_q_points(other.n_q_points)
, mapping(other.mapping)
, fe(other.fe)