removed moved_type import (not used explicitly)

This commit is contained in:
joaquintides
2022-10-07 12:10:14 +02:00
parent 74c2ae627a
commit b61ec3a65a
2 changed files with 0 additions and 6 deletions

View File

@ -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:

View File

@ -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); }