diff options
author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2013-03-29 16:19:55 +0700 |
---|---|---|
committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2013-03-29 16:19:55 +0700 |
commit | aa0108c75e4177b6db0705ce42998e92c6ac734f (patch) | |
tree | c0ec6d57dcb70dfaba808a8c74b8e892d712051b /system/include/libcxx/strstream | |
parent | e3d12277cdbb3c47ddeacf1fa005f2964debefbb (diff) |
Update to r178253 from March 29, 2013.
Diffstat (limited to 'system/include/libcxx/strstream')
-rw-r--r-- | system/include/libcxx/strstream | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/system/include/libcxx/strstream b/system/include/libcxx/strstream index 5eadefd1..81eef2ab 100644 --- a/system/include/libcxx/strstream +++ b/system/include/libcxx/strstream @@ -137,7 +137,7 @@ private: _LIBCPP_BEGIN_NAMESPACE_STD -class _LIBCPP_VISIBLE strstreambuf +class _LIBCPP_TYPE_VIS strstreambuf : public streambuf { public: @@ -228,7 +228,7 @@ strstreambuf::operator=(strstreambuf&& __rhs) #endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES -class _LIBCPP_VISIBLE istrstream +class _LIBCPP_TYPE_VIS istrstream : public istream { public: @@ -281,7 +281,7 @@ private: strstreambuf __sb_; }; -class _LIBCPP_VISIBLE ostrstream +class _LIBCPP_TYPE_VIS ostrstream : public ostream { public: @@ -334,7 +334,7 @@ private: strstreambuf __sb_; // exposition only }; -class _LIBCPP_VISIBLE strstream +class _LIBCPP_TYPE_VIS strstream : public iostream { public: |