From 93741ee6f2710873f06ff5dd941efef05754be53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Thu, 10 Mar 2022 12:02:06 +0100 Subject: [PATCH] Add missing typenames for bucket_traits y bucket_type --- include/boost/container/detail/hash_table.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/boost/container/detail/hash_table.hpp b/include/boost/container/detail/hash_table.hpp index d1bb122..68bc8a6 100644 --- a/include/boost/container/detail/hash_table.hpp +++ b/include/boost/container/detail/hash_table.hpp @@ -271,8 +271,8 @@ struct hash_table_types < Allocator, ValHash, ValEqual , options_type::store_hash >::type Icont; - typedef Icont::bucket_type bucket_type; - typedef Icont::bucket_traits bucket_traits; + typedef typename Icont::bucket_type bucket_type; + typedef typename Icont::bucket_traits bucket_traits; typedef dtl::node_alloc_holder AllocHolder; @@ -310,8 +310,8 @@ class hash_table typedef dtl::allocator_node_destroyer Destroyer; typedef typename AllocHolder::alloc_version alloc_version; - typedef Icont::bucket_type bucket_type; - typedef Icont::bucket_traits bucket_traits; + typedef typename Icont::bucket_type bucket_type; + typedef typename Icont::bucket_traits bucket_traits; typedef typename hash_table_types ::bucket_holder_t bucket_holder_t;