Forgot 'const' on my last checkin

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@217877 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Marshall Clow
2014-09-16 15:33:53 +00:00
parent 546eca8dc6
commit d1fae17224
2 changed files with 8 additions and 8 deletions

View File

@@ -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: