From: Wolfgang Bangerth Date: Mon, 14 Sep 2020 12:58:56 +0000 (-0600) Subject: Mark two functions 'noexcept'. X-Git-Tag: v9.3.0-rc1~1112^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F10912%2Fhead;p=dealii.git Mark two functions 'noexcept'. --- diff --git a/include/deal.II/lac/affine_constraints.h b/include/deal.II/lac/affine_constraints.h index fa51895567..11c0452448 100644 --- a/include/deal.II/lac/affine_constraints.h +++ b/include/deal.II/lac/affine_constraints.h @@ -565,7 +565,8 @@ public: /** * Move constructor */ - AffineConstraints(AffineConstraints &&affine_constraints) = default; // NOLINT + AffineConstraints(AffineConstraints &&affine_constraints) noexcept = + default; // NOLINT /** * Copy operator. Like for many other large objects, this operator @@ -583,7 +584,8 @@ public: * Move assignment operator */ AffineConstraints & - operator=(AffineConstraints &&affine_constraints) = default; // NOLINT + operator=(AffineConstraints &&affine_constraints) noexcept = + default; // NOLINT /** * Copy the given object to the current one.