Add more sizeof tests to packed_buffer_test

This commit is contained in:
Peter Dimov
2020-10-06 22:00:35 +03:00
parent 295c225e9e
commit 84f15c4fb2

View File

@ -26,7 +26,11 @@ struct X
int main()
{
BOOST_TEST_EQ( sizeof( X ), 12 );
BOOST_TEST_EQ( sizeof(big_uint16_buf_t), 2 );
BOOST_TEST_EQ( sizeof(double), 8 );
BOOST_TEST_EQ( sizeof(little_uint16_buf_t), 2 );
BOOST_TEST_EQ( sizeof(X), 12 );
return boost::report_errors();
}