Add allocator_construct and allocator_destroy tests to Jamfile

This commit is contained in:
Glen Fernandes
2022-03-12 00:51:52 -05:00
parent dbefea9631
commit f326683d42
3 changed files with 4 additions and 2 deletions

View File

@@ -52,7 +52,7 @@ int main()
}
#if !defined(BOOST_NO_CXX11_ALLOCATOR)
{
A1<int> a;
A2<int> a;
int i = 5;
boost::allocator_destroy(a, &i);
BOOST_TEST_EQ(i, 0);