Changeset 5d235bf0 in mainline


Ignore:
Timestamp:
2018-07-05T21:41:21Z (6 years ago)
Author:
Dzejrou <dzejrou@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
cbf9099
Parents:
c439e6a
git-author:
Dzejrou <dzejrou@…> (2018-04-24 22:49:51)
git-committer:
Dzejrou <dzejrou@…> (2018-07-05 21:41:21)
Message:

cpp: fixed constness issue with the ostream << operator for string

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/cpp/include/internal/string.hpp

    rc439e6a r5d235bf0  
    8383    template<class Char, class Traits, class Allocator>
    8484    basic_ostream<Char, Traits>& operator<<(basic_ostream<Char, Traits>& os,
    85                                             basic_string<Char, Traits, Allocator>& str)
     85                                            const basic_string<Char, Traits, Allocator>& str)
    8686    {
    8787        // TODO: determine padding as described in 27.7.3.6.1
Note: See TracChangeset for help on using the changeset viewer.