diff options
| author | Howard Hinnant <hhinnant@apple.com> | 2011-07-07 21:03:52 +0000 |
|---|---|---|
| committer | Howard Hinnant <hhinnant@apple.com> | 2011-07-07 21:03:52 +0000 |
| commit | 11af28bdbdff9132d225014ce4964b1bc56370cf (patch) | |
| tree | 696c1c64c9c004cd2d0aefde14133e9b53d5c7aa /libcxx/include/ostream | |
| parent | be652e6a24069949e5a1fa06e7c68c5550fc23c3 (diff) | |
| download | bcm5719-llvm-11af28bdbdff9132d225014ce4964b1bc56370cf.tar.gz bcm5719-llvm-11af28bdbdff9132d225014ce4964b1bc56370cf.zip | |
Fixing up some ABI issues
llvm-svn: 134639
Diffstat (limited to 'libcxx/include/ostream')
| -rw-r--r-- | libcxx/include/ostream | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libcxx/include/ostream b/libcxx/include/ostream index 6730cabe636..f1a3de9c6df 100644 --- a/libcxx/include/ostream +++ b/libcxx/include/ostream @@ -154,11 +154,13 @@ public: virtual ~basic_ostream(); protected: #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES + _LIBCPP_INLINE_VISIBILITY basic_ostream(basic_ostream&& __rhs); #endif // 27.7.2.3 Assign/swap #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES + _LIBCPP_INLINE_VISIBILITY basic_ostream& operator=(basic_ostream&& __rhs); #endif void swap(basic_ostream& __rhs); |

