diff options
| author | Marshall Clow <mclow.lists@gmail.com> | 2014-09-17 01:58:15 +0000 |
|---|---|---|
| committer | Marshall Clow <mclow.lists@gmail.com> | 2014-09-17 01:58:15 +0000 |
| commit | 85d5e6f25b4b8439e1fada9c2c46e9ab78bbb813 (patch) | |
| tree | af3aa44fc6da6daa468eb44f4895f538df785123 /libcxx/include/ostream | |
| parent | a637536ec163dfce07b222ff2fe163d806501f7f (diff) | |
| download | bcm5719-llvm-85d5e6f25b4b8439e1fada9c2c46e9ab78bbb813.tar.gz bcm5719-llvm-85d5e6f25b4b8439e1fada9c2c46e9ab78bbb813.zip | |
K-ballo pointed out *another* mistype in my change
llvm-svn: 217936
Diffstat (limited to 'libcxx/include/ostream')
| -rw-r--r-- | libcxx/include/ostream | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libcxx/include/ostream b/libcxx/include/ostream index 2e27070f4ea..a7af2994b6b 100644 --- a/libcxx/include/ostream +++ b/libcxx/include/ostream @@ -169,9 +169,6 @@ protected: #endif // 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 _LIBCPP_INLINE_VISIBILITY basic_ostream& operator=(basic_ostream&& __rhs); @@ -182,9 +179,8 @@ protected: basic_ostream (const basic_ostream& __rhs) = delete; basic_ostream& operator=(const basic_ostream& __rhs) = delete; #else -private: - basic_ostream (const basic_ostream& __rhs); - basic_ostream& operator=(const basic_ostream& __rhs); + basic_ostream (const basic_ostream& __rhs); // not defined + basic_ostream& operator=(const basic_ostream& __rhs); // not defined #endif public: |

