From Jason Turner

[syncstream.syn]

Diff to HTML by rtfpessoa

tmp/tmpbhh5o74m/{from.md → to.md} RENAMED
@@ -5,10 +5,15 @@
5
 
6
  namespace std {
7
  template<class charT, class traits = char_traits<charT>, class Allocator = allocator<charT>>
8
  class basic_syncbuf;
9
 
 
 
 
 
 
10
  using syncbuf = basic_syncbuf<char>;
11
  using wsyncbuf = basic_syncbuf<wchar_t>;
12
 
13
  template<class charT, class traits = char_traits<charT>, class Allocator = allocator<charT>>
14
  class basic_osyncstream;
 
5
 
6
  namespace std {
7
  template<class charT, class traits = char_traits<charT>, class Allocator = allocator<charT>>
8
  class basic_syncbuf;
9
 
10
+ // [syncstream.syncbuf.special], specialized algorithms
11
+ template<class charT, class traits, class Allocator>
12
+ void swap(basic_syncbuf<charT, traits, Allocator>&,
13
+ basic_syncbuf<charT, traits, Allocator>&);
14
+
15
  using syncbuf = basic_syncbuf<char>;
16
  using wsyncbuf = basic_syncbuf<wchar_t>;
17
 
18
  template<class charT, class traits = char_traits<charT>, class Allocator = allocator<charT>>
19
  class basic_osyncstream;