From 18725a682d3d3180c720b0393e5a1b0fb5f08a53 Mon Sep 17 00:00:00 2001 From: joaquintides Date: Fri, 10 Mar 2023 19:22:48 +0100 Subject: [PATCH] fixed previous fix --- include/boost/unordered/detail/foa/table.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/unordered/detail/foa/table.hpp b/include/boost/unordered/detail/foa/table.hpp index 07fa0c58..bff1a021 100644 --- a/include/boost/unordered/detail/foa/table.hpp +++ b/include/boost/unordered/detail/foa/table.hpp @@ -296,7 +296,7 @@ public: type_policy::construct(this->al(),p,std::forward(args)...); - typename destroy_on_exit guard{this->al(),p}; + typename super::destroy_on_exit guard{this->al(),p}; return emplace_impl(type_policy::move(*p)); }