|
4235 | 4235 |
|
4236 | 4236 | protected: |
4237 | 4237 | // \ref{istream.cons}, copy/move constructor |
4238 | | - basic_istream(const basic_istream& rhs) = delete; |
| 4238 | + basic_istream(const basic_istream&) = delete; |
4239 | 4239 | basic_istream(basic_istream&& rhs); |
4240 | 4240 |
|
4241 | 4241 | // \ref{istream.assign}, assign and swap |
4242 | | - basic_istream& operator=(const basic_istream& rhs) = delete; |
| 4242 | + basic_istream& operator=(const basic_istream&) = delete; |
4243 | 4243 | basic_istream& operator=(basic_istream&& rhs); |
4244 | 4244 | void swap(basic_istream& rhs); |
4245 | 4245 | }; |
|
5625 | 5625 |
|
5626 | 5626 | protected: |
5627 | 5627 | // \ref{iostream.cons}, constructor |
5628 | | - basic_iostream(const basic_iostream& rhs) = delete; |
| 5628 | + basic_iostream(const basic_iostream&) = delete; |
5629 | 5629 | basic_iostream(basic_iostream&& rhs); |
5630 | 5630 |
|
5631 | 5631 | // \ref{iostream.assign}, assign and swap |
5632 | | - basic_iostream& operator=(const basic_iostream& rhs) = delete; |
| 5632 | + basic_iostream& operator=(const basic_iostream&) = delete; |
5633 | 5633 | basic_iostream& operator=(basic_iostream&& rhs); |
5634 | 5634 | void swap(basic_iostream& rhs); |
5635 | 5635 | }; |
|
5789 | 5789 |
|
5790 | 5790 | protected: |
5791 | 5791 | // \ref{ostream.cons}, copy/move constructor |
5792 | | - basic_ostream(const basic_ostream& rhs) = delete; |
| 5792 | + basic_ostream(const basic_ostream&) = delete; |
5793 | 5793 | basic_ostream(basic_ostream&& rhs); |
5794 | 5794 |
|
5795 | 5795 | // \ref{ostream.assign}, assign and swap |
5796 | | - basic_ostream& operator=(const basic_ostream& rhs) = delete; |
| 5796 | + basic_ostream& operator=(const basic_ostream&) = delete; |
5797 | 5797 | basic_ostream& operator=(basic_ostream&& rhs); |
5798 | 5798 | void swap(basic_ostream& rhs); |
5799 | 5799 | }; |
|
7443 | 7443 | explicit basic_stringbuf( |
7444 | 7444 | const basic_string<charT, traits, SAlloc>& s, |
7445 | 7445 | ios_base::openmode which = ios_base::in | ios_base::out); |
7446 | | - basic_stringbuf(const basic_stringbuf& rhs) = delete; |
| 7446 | + basic_stringbuf(const basic_stringbuf&) = delete; |
7447 | 7447 | basic_stringbuf(basic_stringbuf&& rhs); |
7448 | 7448 | basic_stringbuf(basic_stringbuf&& rhs, const Allocator& a); |
7449 | 7449 |
|
7450 | 7450 | // \ref{stringbuf.assign}, assign and swap |
7451 | | - basic_stringbuf& operator=(const basic_stringbuf& rhs) = delete; |
| 7451 | + basic_stringbuf& operator=(const basic_stringbuf&) = delete; |
7452 | 7452 | basic_stringbuf& operator=(basic_stringbuf&& rhs); |
7453 | 7453 | void swap(basic_stringbuf& rhs) noexcept(@\seebelow@); |
7454 | 7454 |
|
|
8244 | 8244 | explicit basic_istringstream( |
8245 | 8245 | const basic_string<charT, traits, SAlloc>& s, |
8246 | 8246 | ios_base::openmode which = ios_base::in); |
8247 | | - basic_istringstream(const basic_istringstream& rhs) = delete; |
| 8247 | + basic_istringstream(const basic_istringstream&) = delete; |
8248 | 8248 | basic_istringstream(basic_istringstream&& rhs); |
8249 | 8249 |
|
8250 | 8250 | // \ref{istringstream.assign}, assign and swap |
8251 | | - basic_istringstream& operator=(const basic_istringstream& rhs) = delete; |
| 8251 | + basic_istringstream& operator=(const basic_istringstream&) = delete; |
8252 | 8252 | basic_istringstream& operator=(basic_istringstream&& rhs); |
8253 | 8253 | void swap(basic_istringstream& rhs); |
8254 | 8254 |
|
|
8577 | 8577 | explicit basic_ostringstream( |
8578 | 8578 | const basic_string<charT, traits, SAlloc>& s, |
8579 | 8579 | ios_base::openmode which = ios_base::out); |
8580 | | - basic_ostringstream(const basic_ostringstream& rhs) = delete; |
| 8580 | + basic_ostringstream(const basic_ostringstream&) = delete; |
8581 | 8581 | basic_ostringstream(basic_ostringstream&& rhs); |
8582 | 8582 |
|
8583 | 8583 | // \ref{ostringstream.assign}, assign and swap |
8584 | | - basic_ostringstream& operator=(const basic_ostringstream& rhs) = delete; |
| 8584 | + basic_ostringstream& operator=(const basic_ostringstream&) = delete; |
8585 | 8585 | basic_ostringstream& operator=(basic_ostringstream&& rhs); |
8586 | 8586 | void swap(basic_ostringstream& rhs); |
8587 | 8587 |
|
|
8914 | 8914 | explicit basic_stringstream( |
8915 | 8915 | const basic_string<charT, traits, SAlloc>& s, |
8916 | 8916 | ios_base::openmode which = ios_base::out | ios_base::in); |
8917 | | - basic_stringstream(const basic_stringstream& rhs) = delete; |
| 8917 | + basic_stringstream(const basic_stringstream&) = delete; |
8918 | 8918 | basic_stringstream(basic_stringstream&& rhs); |
8919 | 8919 |
|
8920 | 8920 | // \ref{stringstream.assign}, assign and swap |
8921 | | - basic_stringstream& operator=(const basic_stringstream& rhs) = delete; |
| 8921 | + basic_stringstream& operator=(const basic_stringstream&) = delete; |
8922 | 8922 | basic_stringstream& operator=(basic_stringstream&& rhs); |
8923 | 8923 | void swap(basic_stringstream& rhs); |
8924 | 8924 |
|
|
9299 | 9299 |
|
9300 | 9300 | // \ref{filebuf.cons}, constructors/destructor |
9301 | 9301 | basic_filebuf(); |
9302 | | - basic_filebuf(const basic_filebuf& rhs) = delete; |
| 9302 | + basic_filebuf(const basic_filebuf&) = delete; |
9303 | 9303 | basic_filebuf(basic_filebuf&& rhs); |
9304 | 9304 | virtual ~basic_filebuf(); |
9305 | 9305 |
|
9306 | 9306 | // \ref{filebuf.assign}, assign and swap |
9307 | | - basic_filebuf& operator=(const basic_filebuf& rhs) = delete; |
| 9307 | + basic_filebuf& operator=(const basic_filebuf&) = delete; |
9308 | 9308 | basic_filebuf& operator=(basic_filebuf&& rhs); |
9309 | 9309 | void swap(basic_filebuf& rhs); |
9310 | 9310 |
|
@@ -10079,11 +10079,11 @@ |
10079 | 10079 | ios_base::openmode mode = ios_base::in); |
10080 | 10080 | explicit basic_ifstream(const filesystem::path& s, |
10081 | 10081 | ios_base::openmode mode = ios_base::in); |
10082 | | - basic_ifstream(const basic_ifstream& rhs) = delete; |
| 10082 | + basic_ifstream(const basic_ifstream&) = delete; |
10083 | 10083 | basic_ifstream(basic_ifstream&& rhs); |
10084 | 10084 |
|
10085 | 10085 | // \ref{ifstream.assign}, assign and swap |
10086 | | - basic_ifstream& operator=(const basic_ifstream& rhs) = delete; |
| 10086 | + basic_ifstream& operator=(const basic_ifstream&) = delete; |
10087 | 10087 | basic_ifstream& operator=(basic_ifstream&& rhs); |
10088 | 10088 | void swap(basic_ifstream& rhs); |
10089 | 10089 |
|
@@ -10335,11 +10335,11 @@ |
10335 | 10335 | ios_base::openmode mode = ios_base::out); |
10336 | 10336 | explicit basic_ofstream(const filesystem::path& s, |
10337 | 10337 | ios_base::openmode mode = ios_base::out); |
10338 | | - basic_ofstream(const basic_ofstream& rhs) = delete; |
| 10338 | + basic_ofstream(const basic_ofstream&) = delete; |
10339 | 10339 | basic_ofstream(basic_ofstream&& rhs); |
10340 | 10340 |
|
10341 | 10341 | // \ref{ofstream.assign}, assign and swap |
10342 | | - basic_ofstream& operator=(const basic_ofstream& rhs) = delete; |
| 10342 | + basic_ofstream& operator=(const basic_ofstream&) = delete; |
10343 | 10343 | basic_ofstream& operator=(basic_ofstream&& rhs); |
10344 | 10344 | void swap(basic_ofstream& rhs); |
10345 | 10345 |
|
@@ -10593,11 +10593,11 @@ |
10593 | 10593 | explicit basic_fstream( |
10594 | 10594 | const filesystem::path& s, |
10595 | 10595 | ios_base::openmode mode = ios_base::in | ios_base::out); |
10596 | | - basic_fstream(const basic_fstream& rhs) = delete; |
| 10596 | + basic_fstream(const basic_fstream&) = delete; |
10597 | 10597 | basic_fstream(basic_fstream&& rhs); |
10598 | 10598 |
|
10599 | 10599 | // \ref{fstream.assign}, assign and swap |
10600 | | - basic_fstream& operator=(const basic_fstream& rhs) = delete; |
| 10600 | + basic_fstream& operator=(const basic_fstream&) = delete; |
10601 | 10601 | basic_fstream& operator=(basic_fstream&& rhs); |
10602 | 10602 | void swap(basic_fstream& rhs); |
10603 | 10603 |
|
|
0 commit comments