From f8595fc39f7e68e05e19927f771041a8a3dd4fb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Thu, 10 Mar 2022 10:29:24 +0100 Subject: [PATCH] Rename Rename "real_key_of_value" to "tree_key_of_value" --- include/boost/container/detail/tree.hpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/boost/container/detail/tree.hpp b/include/boost/container/detail/tree.hpp index 051eb10..f67ae8b 100644 --- a/include/boost/container/detail/tree.hpp +++ b/include/boost/container/detail/tree.hpp @@ -391,25 +391,25 @@ struct get_tree_opt }; template -struct real_key_of_value +struct tree_key_of_value { typedef KeyOfValue type; }; template -struct real_key_of_value +struct tree_key_of_value { typedef dtl::identity type; }; template -struct real_key_of_value, int> +struct tree_key_of_value, int> { typedef dtl::select1st type; }; template -struct real_key_of_value, int> +struct tree_key_of_value, int> { typedef dtl::select1st type; }; @@ -421,7 +421,7 @@ class tree , typename dtl::intrusive_tree_type < typename real_allocator::type , tree_value_compare - ::type>::pointer, Compare, typename real_key_of_value::type> + ::type>::pointer, Compare, typename tree_key_of_value::type> , get_tree_opt::type::tree_type , get_tree_opt::type::optimize_size >::type @@ -434,7 +434,7 @@ class tree private: typedef allocator_traits allocator_traits_t; - typedef typename real_key_of_value::type key_of_value_t; + typedef typename tree_key_of_value::type key_of_value_t; typedef tree_value_compare < typename allocator_traits_t::pointer , Compare