Changeset f56e741c 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:
- 13f7525
- Parents:
- 800968b7
- git-author:
- Dzejrou <dzejrou@…> (2018-05-04 16:28:05)
- git-committer:
- Dzejrou <dzejrou@…> (2018-07-05 21:41:23)
- File:
- 
      - 1 edited
 
 - 
          
  uspace/lib/cpp/include/impl/istream.hpp (modified) (2 diffs)
 
Legend:
- Unmodified
- Added
- Removed
- 
      uspace/lib/cpp/include/impl/istream.hppr800968b7 rf56e741c 635 635 basic_istream<Char, Traits>& putback(char_type c) 636 636 { 637 clear(this->rdstate() & (~ios_base::eofbit));637 this->clear(this->rdstate() & (~ios_base::eofbit)); 638 638 639 639 gcount_ = 0; … … 660 660 basic_istream<Char, Traits>& unget() 661 661 { 662 clear(this->rdstate() & (~ios_base::eofbit));662 this->clear(this->rdstate() & (~ios_base::eofbit)); 663 663 664 664 gcount_ = 0; 
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  
