Ignore:
Timestamp:
2018-08-03T14:51:07Z (7 years ago)
Author:
Jiří Zárevúcky <jiri.zarevucky@…>
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)
Message:

Bump GCC version to 8.2.0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/cpp/include/__bits/io/istream.hpp

    rf2c8f55 rc92dfed  
    805805                                            unsigned char& c)
    806806    {
    807         return is >> static_cast<char&>(c);
     807        return is >> reinterpret_cast<char&>(c);
    808808    }
    809809
     
    812812                                            signed char& c)
    813813    {
    814         return is >> static_cast<char&>(c);
     814        return is >> reinterpret_cast<char&>(c);
    815815    }
    816816
     
    858858                                            unsigned char* str)
    859859    {
    860         return is >> static_cast<char*>(str);
     860        return is >> reinterpret_cast<char*>(str);
    861861    }
    862862
     
    865865                                            signed char* str)
    866866    {
    867         return is >> static_cast<char*>(str);
     867        return is >> reinterpret_cast<char*>(str);
    868868    }
    869869
Note: See TracChangeset for help on using the changeset viewer.