From 1fa823d815d656c188f96694e85807aacd292309 Mon Sep 17 00:00:00 2001 From: Christian Mazakas Date: Fri, 7 Oct 2022 14:59:15 -0700 Subject: [PATCH] Fix erroneous usage of boost::is_convertible instead of std::is_convertible --- include/boost/unordered/detail/foa.hpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/include/boost/unordered/detail/foa.hpp b/include/boost/unordered/detail/foa.hpp index ea8aabcf..60999b31 100644 --- a/include/boost/unordered/detail/foa.hpp +++ b/include/boost/unordered/detail/foa.hpp @@ -1099,9 +1099,8 @@ public: template auto erase(Key&& x) -> typename std::enable_if< - !boost::is_convertible::value&& - !boost::is_convertible::value, std::size_t>::type - erase(Key&& x) + !std::is_convertible::value&& + !std::is_convertible::value, std::size_t>::type { auto it=find(x); if(it!=end()){