Changeset eaabd7d in mainline for uspace/lib/cpp/include/impl/sstream.hpp
- Timestamp:
- 2018-07-05T21:41:23Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c075647a
- Parents:
- fceeb93
- git-author:
- Dzejrou <dzejrou@…> (2018-05-11 22:12:07)
- git-committer:
- Dzejrou <dzejrou@…> (2018-07-05 21:41:23)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/cpp/include/impl/sstream.hpp
rfceeb93 reaabd7d 32 32 #include <ios> 33 33 #include <iosfwd> 34 #include <iostream> 34 35 #include <streambuf> 35 36 #include <string> … … 104 105 if (mode_ & ios_base::out) 105 106 return basic_string<char_type, traits_type, allocator_type>{ 106 this->output_begin_, this->output_next_ , str_.get_allocator()107 this->output_begin_, this->output_next_ - 1, str_.get_allocator() 107 108 }; 108 109 else if (mode_ == ios_base::in)
Note:
See TracChangeset
for help on using the changeset viewer.