From c1e9a6ac59722d92e8356b38147485e241866634 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Sat, 29 Nov 2008 21:47:55 +0000 Subject: [PATCH] Workaround another in-place destruction. [SVN r50029] --- include/boost/unordered/detail/hash_table_impl.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/unordered/detail/hash_table_impl.hpp b/include/boost/unordered/detail/hash_table_impl.hpp index 1209d4bb..bdee0614 100644 --- a/include/boost/unordered/detail/hash_table_impl.hpp +++ b/include/boost/unordered/detail/hash_table_impl.hpp @@ -172,7 +172,7 @@ namespace boost { { if (node_) { if (value_constructed_) { - node_->value().~value_type(); + boost::unordered_detail::destroy(&node_->value()); } if (node_constructed_)