s/BOOST_UNORDERED_ASSUME/BOOST_ASSERT

This commit is contained in:
joaquintides 2023-03-08 19:12:46 +01:00
parent 4d982e133e
commit 1c5640cfbe
1 changed files with 1 additions and 1 deletions

View File

@ -892,7 +892,7 @@ private:
inline void increment()noexcept
{
BOOST_UNORDERED_ASSUME(p!=nullptr);
BOOST_ASSERT(p!=nullptr);
increment(std::integral_constant<bool,regular_layout>{});
}