Changeset 78a794ab 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:
- d275344
- Parents:
- 13f7525
- git-author:
- Dzejrou <dzejrou@…> (2018-05-04 19:18:52)
- git-committer:
- Dzejrou <dzejrou@…> (2018-07-05 21:41:23)
- Location:
- uspace/lib/cpp
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/cpp/Makefile
r13f7525 r78a794ab 40 40 src/condition_variable.cpp \ 41 41 src/exception.cpp \ 42 src/iomanip.cpp \ 42 43 src/ios.cpp \ 43 44 src/iostream.cpp \ -
uspace/lib/cpp/include/impl/iomanip.hpp
r13f7525 r78a794ab 30 30 #define LIBCPP_IOMANIP 31 31 32 #error "<iomanip> is not implemented" 32 #include <internal/iomanip.hpp> 33 #include <iosfwd> 33 34 34 // TODO: implement 35 namespace std 36 { 37 /** 38 * 27.7.4, standard manipulators: 39 */ 40 41 aux::manip_wrapper<aux::resetiosflags_t> resetiosflags(ios_base::fmtflags mask); 42 aux::manip_wrapper<aux::setiosflags_t> setiosflags(ios_base::fmtflags mask); 43 aux::manip_wrapper<aux::setbase_t> setbase(int base); 44 45 template<class Char> 46 aux::setfill_t<Char> setfill(Char c) 47 { 48 return aux::setfill_t<Char>{c}; 49 } 50 51 aux::manip_wrapper<aux::setprecision_t> setprecision(int prec); 52 aux::manip_wrapper<aux::setw_t> setw(int width); 53 } 35 54 36 55 #endif
Note:
See TracChangeset
for help on using the changeset viewer.