mirror of
https://github.com/boostorg/unordered.git
synced 2025-07-30 11:27:15 +02:00
Catch remaining places where value_type was used instead of storage_type
This commit is contained in:
@ -1622,7 +1622,7 @@ private:
|
||||
{
|
||||
~destroy_element_on_exit(){this_->destroy_element(p);}
|
||||
table *this_;
|
||||
value_type *p;
|
||||
storage_type *p;
|
||||
};
|
||||
|
||||
void copy_elements_from(const table& x)
|
||||
|
@ -168,7 +168,7 @@ namespace boost {
|
||||
return kv->first;
|
||||
}
|
||||
|
||||
static value_type&& move(storage_type& x) { return std::move(x); }
|
||||
static storage_type&& move(storage_type& x) { return std::move(x); }
|
||||
};
|
||||
|
||||
using table_type = detail::foa::table<map_types, Hash, KeyEqual,
|
||||
|
Reference in New Issue
Block a user