Changeset 05922b3b in mainline
- Timestamp:
- 2018-07-05T21:41:19Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9cb221b
- Parents:
- eb69df4
- git-author:
- Dzejrou <dzejrou@…> (2017-12-04 15:57:12)
- git-committer:
- Dzejrou <dzejrou@…> (2018-07-05 21:41:19)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/cpp/include/impl/ios.hpp
reb69df4 r05922b3b 31 31 32 32 #include <cstdlib> 33 #include <internal/locale.hpp> 34 #include <internal/locale/ctype.hpp> 33 35 #include <iosfwd> 34 #include <locale>35 36 #include <system_error> 36 37 #include <utility> … … 95 96 static constexpr iostate eofbit = 0b0010; 96 97 static constexpr iostate failbit = 0b0100; 97 static constexpr iostate goodbit = 0b 1000;98 static constexpr iostate goodbit = 0b0000; 98 99 99 100 /** … … 129 130 130 131 private: 131 static int init_cnt ;132 static int init_cnt_; 132 133 }; 133 134 … … 194 195 ios_base(); 195 196 196 private:197 197 static int index_; 198 198 static bool sync_; … … 210 210 streamsize precision_; 211 211 streamsize width_; 212 212 213 locale locale_; 213 214
Note:
See TracChangeset
for help on using the changeset viewer.