Changeset f4a42661 in mainline for uspace/lib/cpp/include/__bits


Ignore:
Timestamp:
2023-10-22T14:04:49Z (2 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
590cb6d2
Parents:
b2cbc0b (diff), c63c2bb (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge fixes to issues found while updating toolchain

Location:
uspace/lib/cpp/include/__bits
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/cpp/include/__bits/adt/hash_table.hpp

    rb2cbc0b rf4a42661  
    252252            void swap(hash_table& other)
    253253                noexcept(allocator_traits<allocator_type>::is_always_equal::value &&
    254                          noexcept(swap(declval<Hasher&>(), declval<Hasher&>())) &&
    255                          noexcept(swap(declval<KeyEq&>(), declval<KeyEq&>())))
     254                         noexcept(std::swap(declval<Hasher&>(), declval<Hasher&>())) &&
     255                         noexcept(std::swap(declval<KeyEq&>(), declval<KeyEq&>())))
    256256            {
    257257                std::swap(table_, other.table_);
  • uspace/lib/cpp/include/__bits/adt/rbtree.hpp

    rb2cbc0b rf4a42661  
    233233            void swap(rbtree& other)
    234234                noexcept(allocator_traits<allocator_type>::is_always_equal::value &&
    235                          noexcept(swap(declval<KeyComp&>(), declval<KeyComp&>())))
     235                         noexcept(std::swap(declval<KeyComp&>(), declval<KeyComp&>())))
    236236            {
    237237                std::swap(root_, other.root_);
  • uspace/lib/cpp/include/__bits/string/string.hpp

    rb2cbc0b rf4a42661  
    521521
    522522            basic_string(size_type n, value_type c, const allocator_type& alloc = allocator_type{})
    523                 : data_{}, size_{n}, capacity_{n}, allocator_{alloc}
     523                : data_{}, size_{n}, capacity_{n + 1}, allocator_{alloc}
    524524            {
    525525                data_ = allocator_.allocate(capacity_);
     
    908908            {
    909909                // TODO: if (n > max_size()) throw length_error.
    910                 resize_without_copy_(n);
     910                resize_without_copy_(n + 1);
    911911                traits_type::copy(begin(), str, n);
    912912                size_ = n;
Note: See TracChangeset for help on using the changeset viewer.