Replace BOOST_TEST call with BOOST_ASSERT to resolve https://github.com/boostorg/unordered/issues/36

This commit is contained in:
LeonineKing1199
2021-11-18 09:36:04 -08:00
parent 1e553df5b6
commit 24a38922bd

View File

@ -68,7 +68,7 @@ namespace test {
{
}
~memory_tracker() { BOOST_TEST(count_allocators == 0); }
~memory_tracker() { BOOST_ASSERT(count_allocators == 0); }
void allocator_ref()
{