From: Daniel Arndt Date: Mon, 24 May 2021 19:31:57 +0000 (-0400) Subject: Mark destructor and move assignment operator as noexcept X-Git-Tag: v9.4.0-rc1~1340^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=775f7009e0f0538fa7a56e79620c0f2580f41fa0;p=dealii.git Mark destructor and move assignment operator as noexcept --- diff --git a/include/deal.II/grid/tria_accessor.h b/include/deal.II/grid/tria_accessor.h index 420667e4fb..5f10eb6fb0 100644 --- a/include/deal.II/grid/tria_accessor.h +++ b/include/deal.II/grid/tria_accessor.h @@ -729,7 +729,7 @@ public: /** * Move constructor. */ - TriaAccessor(TriaAccessor &&) = default; + TriaAccessor(TriaAccessor &&) noexcept = default; /** * Conversion constructor. This constructor exists to make certain @@ -769,7 +769,7 @@ public: * Move assignment operator. Moving is allowed. */ TriaAccessor & - operator=(TriaAccessor &&) = default; + operator=(TriaAccessor &&) noexcept = default; /** * Defaulted destructor.