From 1c5640cfbe84213b9d2a7eff68e2db744cfa3817 Mon Sep 17 00:00:00 2001 From: joaquintides Date: Wed, 8 Mar 2023 19:12:46 +0100 Subject: [PATCH] s/BOOST_UNORDERED_ASSUME/BOOST_ASSERT --- include/boost/unordered/detail/foa.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/unordered/detail/foa.hpp b/include/boost/unordered/detail/foa.hpp index 67c0a46f..30a27272 100644 --- a/include/boost/unordered/detail/foa.hpp +++ b/include/boost/unordered/detail/foa.hpp @@ -892,7 +892,7 @@ private: inline void increment()noexcept { - BOOST_UNORDERED_ASSUME(p!=nullptr); + BOOST_ASSERT(p!=nullptr); increment(std::integral_constant{}); }