Skip to content

Commit a449305

Browse files
authored
[hive.cons] Add noexcept to move constructor (#8154)
The synopsis specifies noexcept for this constructor (and the effects don't invoke behavior that could throw), so the missing noexcept on the \itemdecl looks like an oversight in P0447R28.
1 parent 6a6fb06 commit a449305

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)