~ubuntu-branches/ubuntu/trusty/emscripten/trusty-proposed

« back to all changes in this revision

Viewing changes to system/include/libcxx/sstream

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2014-01-19 14:12:40 UTC
  • mfrom: (1.2.4)
  • Revision ID: package-import@ubuntu.com-20140119141240-jg1l42cc158j59tn
Tags: 1.9.0~20140119~7dc8c2f-1
* New snapshot release (Closes: #733714)
* Provide sources for javascript and flash. Done in orig-tar.sh
  Available in third_party/websockify/include/web-socket-js/src/
  (Closes: #735903)

Show diffs side-by-side

added added

removed removed

Lines of Context:
186
186
// basic_stringbuf
187
187
 
188
188
template <class _CharT, class _Traits, class _Allocator>
189
 
class _LIBCPP_TYPE_VIS basic_stringbuf
 
189
class _LIBCPP_TYPE_VIS_ONLY basic_stringbuf
190
190
    : public basic_streambuf<_CharT, _Traits>
191
191
{
192
192
public:
613
613
// basic_istringstream
614
614
 
615
615
template <class _CharT, class _Traits, class _Allocator>
616
 
class _LIBCPP_TYPE_VIS basic_istringstream
 
616
class _LIBCPP_TYPE_VIS_ONLY basic_istringstream
617
617
    : public basic_istream<_CharT, _Traits>
618
618
{
619
619
public:
732
732
// basic_ostringstream
733
733
 
734
734
template <class _CharT, class _Traits, class _Allocator>
735
 
class _LIBCPP_TYPE_VIS basic_ostringstream
 
735
class _LIBCPP_TYPE_VIS_ONLY basic_ostringstream
736
736
    : public basic_ostream<_CharT, _Traits>
737
737
{
738
738
public:
851
851
// basic_stringstream
852
852
 
853
853
template <class _CharT, class _Traits, class _Allocator>
854
 
class _LIBCPP_TYPE_VIS basic_stringstream
 
854
class _LIBCPP_TYPE_VIS_ONLY basic_stringstream
855
855
    : public basic_iostream<_CharT, _Traits>
856
856
{
857
857
public: