Changeset 1f6bf85 in mainline
- Timestamp:
- 2023-07-25T13:09:02Z (14 months ago)
- Branches:
- ticket/834-toolchain-update
- Children:
- 4b992266
- Parents:
- 1339fd9
- Location:
- uspace/lib/cpp/include/__bits/adt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/cpp/include/__bits/adt/hash_table.hpp
r1339fd9 r1f6bf85 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
r1339fd9 r1f6bf85 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_);
Note:
See TracChangeset
for help on using the changeset viewer.