forked from OSchip/llvm-project
parent
f45b237c51
commit
30d0c1ab5f
|
@ -199,12 +199,12 @@ protected:
|
|||
void swap(basic_istream& __rhs);
|
||||
|
||||
#ifndef _LIBCPP_HAS_NO_DELETED_FUNCTIONS
|
||||
basic_istream (basic_istream& __rhs) = delete;
|
||||
basic_istream& operator=(basic_istream& __rhs) = delete;
|
||||
basic_istream (const basic_istream& __rhs) = delete;
|
||||
basic_istream& operator=(const basic_istream& __rhs) = delete;
|
||||
#else
|
||||
private:
|
||||
basic_istream (basic_istream& __rhs);
|
||||
basic_istream& operator=(basic_istream& __rhs);
|
||||
basic_istream (const basic_istream& __rhs);
|
||||
basic_istream& operator=(const basic_istream& __rhs);
|
||||
#endif
|
||||
public:
|
||||
|
||||
|
|
|
@ -179,12 +179,12 @@ protected:
|
|||
void swap(basic_ostream& __rhs);
|
||||
|
||||
#ifndef _LIBCPP_HAS_NO_DELETED_FUNCTIONS
|
||||
basic_ostream (basic_ostream& __rhs) = delete;
|
||||
basic_ostream& operator=(basic_ostream& __rhs) = delete;
|
||||
basic_ostream (const basic_ostream& __rhs) = delete;
|
||||
basic_ostream& operator=(const basic_ostream& __rhs) = delete;
|
||||
#else
|
||||
private:
|
||||
basic_ostream (basic_ostream& __rhs);
|
||||
basic_ostream& operator=(basic_ostream& __rhs);
|
||||
basic_ostream (const basic_ostream& __rhs);
|
||||
basic_ostream& operator=(const basic_ostream& __rhs);
|
||||
#endif
|
||||
public:
|
||||
|
||||
|
|
Loading…
Reference in New Issue