From 1434346d81910bf4e4f5395508adbdbeff055df9 Mon Sep 17 00:00:00 2001 From: Rene Gassmoeller Date: Wed, 5 Apr 2023 14:14:16 -0400 Subject: [PATCH] Fix clang-tidy --- include/deal.II/matrix_free/fe_point_evaluation.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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) -- 2.39.5