From Jason Turner

[string.special]

Diff to HTML by rtfpessoa

tmp/tmp3n310v63/{from.md → to.md} RENAMED
@@ -1,10 +1,10 @@
1
  #### `swap` <a id="string.special">[[string.special]]</a>
2
 
3
  ``` cpp
4
  template<class charT, class traits, class Allocator>
5
  void swap(basic_string<charT,traits,Allocator>& lhs,
6
- basic_string<charT,traits,Allocator>& rhs) noexcept;
7
  ```
8
 
9
- *Effects:* `lhs.swap(rhs);`
10
 
 
1
  #### `swap` <a id="string.special">[[string.special]]</a>
2
 
3
  ``` cpp
4
  template<class charT, class traits, class Allocator>
5
  void swap(basic_string<charT,traits,Allocator>& lhs,
6
+ basic_string<charT,traits,Allocator>& rhs);
7
  ```
8
 
9
+ *Effects:* Equivalent to `lhs.swap(rhs);`
10