Changeset f4a42661 in mainline for uspace/lib/cpp
- Timestamp:
- 2023-10-22T14:04:49Z (21 months ago)
- 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. - Location:
- uspace/lib/cpp
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/cpp/include/__bits/adt/hash_table.hpp
rb2cbc0b rf4a42661 252 252 void swap(hash_table& other) 253 253 noexcept(allocator_traits<allocator_type>::is_always_equal::value && 254 noexcept(s wap(declval<Hasher&>(), declval<Hasher&>())) &&255 noexcept(s wap(declval<KeyEq&>(), declval<KeyEq&>())))254 noexcept(std::swap(declval<Hasher&>(), declval<Hasher&>())) && 255 noexcept(std::swap(declval<KeyEq&>(), declval<KeyEq&>()))) 256 256 { 257 257 std::swap(table_, other.table_); -
uspace/lib/cpp/include/__bits/adt/rbtree.hpp
rb2cbc0b rf4a42661 233 233 void swap(rbtree& other) 234 234 noexcept(allocator_traits<allocator_type>::is_always_equal::value && 235 noexcept(s wap(declval<KeyComp&>(), declval<KeyComp&>())))235 noexcept(std::swap(declval<KeyComp&>(), declval<KeyComp&>()))) 236 236 { 237 237 std::swap(root_, other.root_); -
uspace/lib/cpp/include/__bits/string/string.hpp
rb2cbc0b rf4a42661 521 521 522 522 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} 524 524 { 525 525 data_ = allocator_.allocate(capacity_); … … 908 908 { 909 909 // TODO: if (n > max_size()) throw length_error. 910 resize_without_copy_(n );910 resize_without_copy_(n + 1); 911 911 traits_type::copy(begin(), str, n); 912 912 size_ = n; -
uspace/lib/cpp/src/__bits/unwind.cpp
rb2cbc0b rf4a42661 30 30 #include <cstdint> 31 31 #include <cstdlib> 32 #include <typeinfo> 32 33 33 34 namespace __cxxabiv1 -
uspace/lib/cpp/src/future.cpp
rb2cbc0b rf4a42661 84 84 const char* future_error::what() const noexcept 85 85 { 86 return code().message().c_str(); 86 /* 87 * FIXME 88 * Following code would be optimal but the message string is 89 * actually destroyed before the function returns so we would 90 * be returning a dangling pointer. No simple fix available, hence 91 * we use the ugly hack. 92 */ 93 //return code().message().c_str(); 94 #define QUOTE_ARG(arg) #arg 95 return "future_error, see " __FILE__ ":" QUOTE_ARG(__LINE__); 87 96 } 88 97 }
Note:
See TracChangeset
for help on using the changeset viewer.