unsynchronized_pool_resource_test.cpp 696 B

12345678910111213141516171819
  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // (C) Copyright Ion Gaztanaga 2015-2015. Distributed under the Boost
  4. // Software License, Version 1.0. (See accompanying file
  5. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. //
  7. // See http://www.boost.org/libs/container for documentation.
  8. //
  9. //////////////////////////////////////////////////////////////////////////////
  10. #include <boost/container/pmr/unsynchronized_pool_resource.hpp>
  11. #include <boost/core/lightweight_test.hpp>
  12. #include "pool_resource_test.hpp"
  13. int main()
  14. {
  15. test_pool_resource<boost::container::pmr::unsynchronized_pool_resource>();
  16. return ::boost::report_errors();
  17. }