Skip to content

Commit 9605b6d

Browse files
committed
[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.
1 parent 8fe775a commit 9605b6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/containers.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8281,7 +8281,7 @@
82818281

82828282
\indexlibraryctor{hive}%
82838283
\begin{itemdecl}
8284-
hive(hive&& x);
8284+
hive(hive&& x) noexcept;
82858285
hive(hive&& x, const type_identity_t<Allocator>& alloc);
82868286
\end{itemdecl}
82878287

0 commit comments

Comments
 (0)