Changeset c92dfed in mainline for uspace/lib/cpp/include/__bits/io/istream.hpp
- Timestamp:
- 2018-08-03T14:51:07Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3767bdb
- Parents:
- f2c8f55
- git-author:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-08-02 18:34:59)
- git-committer:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-08-03 14:51:07)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/cpp/include/__bits/io/istream.hpp
rf2c8f55 rc92dfed 805 805 unsigned char& c) 806 806 { 807 return is >> static_cast<char&>(c);807 return is >> reinterpret_cast<char&>(c); 808 808 } 809 809 … … 812 812 signed char& c) 813 813 { 814 return is >> static_cast<char&>(c);814 return is >> reinterpret_cast<char&>(c); 815 815 } 816 816 … … 858 858 unsigned char* str) 859 859 { 860 return is >> static_cast<char*>(str);860 return is >> reinterpret_cast<char*>(str); 861 861 } 862 862 … … 865 865 signed char* str) 866 866 { 867 return is >> static_cast<char*>(str);867 return is >> reinterpret_cast<char*>(str); 868 868 } 869 869
Note:
See TracChangeset
for help on using the changeset viewer.