Changeset eaabd7d in mainline
- 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)
- Location:
- uspace/lib/cpp/include/impl
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/cpp/include/impl/bitset.hpp
rfceeb93 reaabd7d 471 471 Char one{is.widen('1')}; 472 472 473 basic_string<Char, Traits> str{ N};473 basic_string<Char, Traits> str{}; 474 474 while (i < N) 475 475 { … … 486 486 487 487 str.push_back(c); 488 ++i; 488 489 } 489 490 -
uspace/lib/cpp/include/impl/istream.hpp
rfceeb93 reaabd7d 427 427 c = traits_type::to_char_type(res); 428 428 429 return this;429 return *this; 430 430 } 431 431 -
uspace/lib/cpp/include/impl/iterator.hpp
rfceeb93 reaabd7d 164 164 template<class Iterator> 165 165 class reverse_iterator 166 : iterator<166 : public iterator< 167 167 typename iterator_traits<Iterator>::iterator_category, 168 168 typename iterator_traits<Iterator>::value_type, -
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.