From: Rene Gassmoeller Date: Wed, 5 Apr 2023 18:14:16 +0000 (-0400) Subject: Fix clang-tidy X-Git-Tag: v9.5.0-rc1~364^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1434346d81910bf4e4f5395508adbdbeff055df9;p=dealii.git Fix clang-tidy --- diff --git a/include/deal.II/matrix_free/fe_point_evaluation.h b/include/deal.II/matrix_free/fe_point_evaluation.h index 681a8f094e..8365511b0a 100644 --- a/include/deal.II/matrix_free/fe_point_evaluation.h +++ b/include/deal.II/matrix_free/fe_point_evaluation.h @@ -463,12 +463,12 @@ public: /** * Copy constructor. */ - FEPointEvaluation(FEPointEvaluation &other); + FEPointEvaluation(FEPointEvaluation &other) noexcept; /** * Move constructor. */ - FEPointEvaluation(FEPointEvaluation &&other); + FEPointEvaluation(FEPointEvaluation &&other) noexcept; /** * Destructor. @@ -873,7 +873,7 @@ FEPointEvaluation::FEPointEvaluation( template FEPointEvaluation::FEPointEvaluation( - FEPointEvaluation &other) + FEPointEvaluation &other) noexcept : n_q_points(other.n_q_points) , mapping(other.mapping) , fe(other.fe) @@ -909,7 +909,7 @@ FEPointEvaluation::FEPointEvaluation( template FEPointEvaluation::FEPointEvaluation( - FEPointEvaluation &&other) + FEPointEvaluation &&other) noexcept : n_q_points(other.n_q_points) , mapping(other.mapping) , fe(other.fe)