tmp/tmp9hyddw6i/{from.md → to.md}
RENAMED
|
@@ -16,11 +16,10 @@ void swap(basic_filebuf& rhs);
|
|
| 16 |
|
| 17 |
*Effects:* Exchanges the state of `*this` and `rhs`.
|
| 18 |
|
| 19 |
``` cpp
|
| 20 |
template<class charT, class traits>
|
| 21 |
-
void swap(basic_filebuf<charT, traits>& x,
|
| 22 |
-
basic_filebuf<charT, traits>& y);
|
| 23 |
```
|
| 24 |
|
| 25 |
*Effects:* Equivalent to: `x.swap(y)`.
|
| 26 |
|
|
|
|
| 16 |
|
| 17 |
*Effects:* Exchanges the state of `*this` and `rhs`.
|
| 18 |
|
| 19 |
``` cpp
|
| 20 |
template<class charT, class traits>
|
| 21 |
+
void swap(basic_filebuf<charT, traits>& x, basic_filebuf<charT, traits>& y);
|
|
|
|
| 22 |
```
|
| 23 |
|
| 24 |
*Effects:* Equivalent to: `x.swap(y)`.
|
| 25 |
|