From 9605b6d9f64e290f2184ed7e8a4b69c0abddbd86 Mon Sep 17 00:00:00 2001 From: Frank Birbacher Date: Fri, 15 Aug 2025 10:26:02 +0200 Subject: [PATCH] [hive.cons]/15 Add noexcept to move constructor The synopsis specifies noexcept for this constructor and the effects don't invoke behavior that could throw, so the missing noexcept looks like an oversight. However, the originating paper P0447R28 is also missing noexcept here. --- source/containers.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/containers.tex b/source/containers.tex index 6a71104dd1..cad3ccecd7 100644 --- a/source/containers.tex +++ b/source/containers.tex @@ -8281,7 +8281,7 @@ \indexlibraryctor{hive}% \begin{itemdecl} -hive(hive&& x); +hive(hive&& x) noexcept; hive(hive&& x, const type_identity_t& alloc); \end{itemdecl}