Merge pull request #37 from LeonineKing1199/memory-tracker-fixes

Replace `BOOST_TEST` call with `BOOST_ASSERT` to resolve testing woes
This commit is contained in:
Peter Dimov 2021-11-19 04:26:33 +02:00 committed by GitHub
commit c0a9f638ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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()
{