forked from boostorg/unordered
removed moved_type import (not used explicitly)
This commit is contained in:
@ -829,11 +829,6 @@ table:empty_value<Hash,0>,empty_value<Pred,1>,empty_value<Allocator,1>
|
||||
public:
|
||||
using key_type=typename type_policy::key_type;
|
||||
using init_type=typename type_policy::init_type;
|
||||
|
||||
private:
|
||||
using moved_type=typename type_policy::moved_type;
|
||||
|
||||
public:
|
||||
using value_type=typename type_policy::value_type;
|
||||
|
||||
private:
|
||||
|
@ -30,7 +30,6 @@ namespace boost {
|
||||
{
|
||||
using key_type = Key;
|
||||
using init_type = Key;
|
||||
using moved_type = Key;
|
||||
using value_type = Key;
|
||||
static Key const& extract(value_type const& key) { return key; }
|
||||
static Key&& move(value_type& x) { return std::move(x); }
|
||||
|
Reference in New Issue
Block a user