Skip to content

Commit 8753efa

Browse files
jensmaurertkoeppe
authored andcommitted
[syncstream.syncbuf.special] Remove 'noexcept' for non-member swap
LWG3498 confirmed that basic_syncbuf's member swap is not 'noexcept'. Since the non-member swap simply delegates to the member swap, the former can't be 'noexcept', either.
1 parent e0f11a3 commit 8753efa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/iostreams.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12082,7 +12082,7 @@
1208212082
\begin{itemdecl}
1208312083
template<class charT, class traits, class Allocator>
1208412084
void swap(basic_syncbuf<charT, traits, Allocator>& a,
12085-
basic_syncbuf<charT, traits, Allocator>& b) noexcept;
12085+
basic_syncbuf<charT, traits, Allocator>& b);
1208612086
\end{itemdecl}
1208712087

1208812088
\begin{itemdescr}

0 commit comments

Comments
 (0)