Changes in uspace/lib/cpp/include/__bits/adt/hash_table.hpp [07eaeea:aaafcc8] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/cpp/include/__bits/adt/hash_table.hpp
r07eaeea raaafcc8 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_);
Note:
See TracChangeset
for help on using the changeset viewer.