From b08837b93e015c1dd922b0280141447cb2926e47 Mon Sep 17 00:00:00 2001 From: joaquintides Date: Sat, 11 Mar 2023 09:58:38 +0100 Subject: [PATCH] added missing template keyword --- 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 fb958076..3dd969d4 100644 --- a/include/boost/unordered/detail/foa/table.hpp +++ b/include/boost/unordered/detail/foa/table.hpp @@ -299,7 +299,7 @@ public: type_policy::construct(this->al(),p,std::forward(args)...); - typename super::destroy_on_exit guard{this->al(),p}; + typename super::template destroy_on_exit guard{this->al(),p}; return emplace_impl(type_policy::move(*p)); }