Changeset dc0fff11 in mainline for uspace/lib/cpp/include/impl/iosfwd.hpp
- Timestamp:
- 2018-07-05T21:41:18Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9315761
- Parents:
- c20cccb
- git-author:
- Jaroslav Jindrak <dzejrou@…> (2017-10-30 12:49:17)
- git-committer:
- Dzejrou <dzejrou@…> (2018-07-05 21:41:18)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/cpp/include/impl/iosfwd.hpp
rc20cccb rdc0fff11 82 82 template<class Char, class Traits = char_traits<Char>, 83 83 class Allocator = allocator<Char>> 84 class basic_ istringstream;84 class basic_ostringstream; 85 85 86 86 template<class Char, class Traits = char_traits<Char>, 87 87 class Allocator = allocator<Char>> 88 class basic_ istringstream;88 class basic_stringstream; 89 89 90 90 … … 147 147 148 148 // TODO: standard p. 1012, this is circular, it offers fix 149 using streampos = fpos<char_traits<char>::state_type>; 150 using wstreampos = fpos<char_traits<wchar_t>::state_type>; 149 /* using streampos = fpos<char_traits<char>::state_type>; */ 150 /* using wstreampos = fpos<char_traits<wchar_t>::state_type>; */ 151 // Temporary workaround. 152 using streampos = unsigned long long; 153 using wstreampos = unsigned long long; 154 // TODO: This should be in ios and not here? 155 using streamoff = long long; 151 156 }
Note:
See TracChangeset
for help on using the changeset viewer.