From f85e04ef318715fbd08b0e1464e64a24368285a3 Mon Sep 17 00:00:00 2001 From: joaquintides Date: Fri, 14 Oct 2022 10:30:53 +0200 Subject: [PATCH] stylistic --- include/boost/unordered/unordered_flat_map.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/boost/unordered/unordered_flat_map.hpp b/include/boost/unordered/unordered_flat_map.hpp index 14f3aa53..b67fa9d4 100644 --- a/include/boost/unordered/unordered_flat_map.hpp +++ b/include/boost/unordered/unordered_flat_map.hpp @@ -33,10 +33,10 @@ namespace boost { { using key_type = Key; using raw_key_type = typename std::remove_const::type; - using raw_value_type = typename std::remove_const::type; + using raw_mapped_type = typename std::remove_const::type; - using init_type = std::pair; - using moved_type = std::pair; + using init_type = std::pair; + using moved_type = std::pair; using value_type = std::pair; template