From b61ec3a65a3e43dce2631619e2e9c9a5afbd952e Mon Sep 17 00:00:00 2001 From: joaquintides Date: Fri, 7 Oct 2022 12:10:14 +0200 Subject: [PATCH] removed moved_type import (not used explicitly) --- include/boost/unordered/detail/foa.hpp | 5 ----- include/boost/unordered/unordered_flat_set.hpp | 1 - 2 files changed, 6 deletions(-) diff --git a/include/boost/unordered/detail/foa.hpp b/include/boost/unordered/detail/foa.hpp index c4024ee5..95f92395 100644 --- a/include/boost/unordered/detail/foa.hpp +++ b/include/boost/unordered/detail/foa.hpp @@ -829,11 +829,6 @@ table:empty_value,empty_value,empty_value 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: diff --git a/include/boost/unordered/unordered_flat_set.hpp b/include/boost/unordered/unordered_flat_set.hpp index 9b7f366d..612c8b2e 100644 --- a/include/boost/unordered/unordered_flat_set.hpp +++ b/include/boost/unordered/unordered_flat_set.hpp @@ -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); }