K-ballo pointed out *another* mistype in my change
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@217936 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d402a4da6b
commit
bb9902ec97
@ -198,13 +198,14 @@ protected:
|
|||||||
#endif
|
#endif
|
||||||
void swap(basic_istream& __rhs);
|
void swap(basic_istream& __rhs);
|
||||||
|
|
||||||
|
#if _LIBCPP_STD_VER > 11
|
||||||
#ifndef _LIBCPP_HAS_NO_DELETED_FUNCTIONS
|
#ifndef _LIBCPP_HAS_NO_DELETED_FUNCTIONS
|
||||||
basic_istream (const basic_istream& __rhs) = delete;
|
basic_istream (const basic_istream& __rhs) = delete;
|
||||||
basic_istream& operator=(const basic_istream& __rhs) = delete;
|
basic_istream& operator=(const basic_istream& __rhs) = delete;
|
||||||
#else
|
#else
|
||||||
private:
|
basic_istream (const basic_istream& __rhs); // not defined
|
||||||
basic_istream (const basic_istream& __rhs);
|
basic_istream& operator=(const basic_istream& __rhs); // not defined
|
||||||
basic_istream& operator=(const basic_istream& __rhs);
|
#endif
|
||||||
#endif
|
#endif
|
||||||
public:
|
public:
|
||||||
|
|
||||||
|
@ -169,9 +169,6 @@ protected:
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
// 27.7.2.3 Assign/swap
|
// 27.7.2.3 Assign/swap
|
||||||
#if _LIBCPP_STD_VER > 11
|
|
||||||
basic_ostream& operator=(const basic_ostream&) = delete;
|
|
||||||
#endif
|
|
||||||
#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
|
#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
|
||||||
_LIBCPP_INLINE_VISIBILITY
|
_LIBCPP_INLINE_VISIBILITY
|
||||||
basic_ostream& operator=(basic_ostream&& __rhs);
|
basic_ostream& operator=(basic_ostream&& __rhs);
|
||||||
@ -182,9 +179,8 @@ protected:
|
|||||||
basic_ostream (const basic_ostream& __rhs) = delete;
|
basic_ostream (const basic_ostream& __rhs) = delete;
|
||||||
basic_ostream& operator=(const basic_ostream& __rhs) = delete;
|
basic_ostream& operator=(const basic_ostream& __rhs) = delete;
|
||||||
#else
|
#else
|
||||||
private:
|
basic_ostream (const basic_ostream& __rhs); // not defined
|
||||||
basic_ostream (const basic_ostream& __rhs);
|
basic_ostream& operator=(const basic_ostream& __rhs); // not defined
|
||||||
basic_ostream& operator=(const basic_ostream& __rhs);
|
|
||||||
#endif
|
#endif
|
||||||
public:
|
public:
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user