test_algorithm2.cpp 573 B

1234567891011121314151617181920
  1. /* Copyright 2016 Joaquin M Lopez Munoz.
  2. * Distributed under the Boost Software License, Version 1.0.
  3. * (See accompanying file LICENSE_1_0.txt or copy at
  4. * http://www.boost.org/LICENSE_1_0.txt)
  5. *
  6. * See http://www.boost.org/libs/poly_collection for library home page.
  7. */
  8. #include "test_algorithm2.hpp"
  9. #include "base_types.hpp"
  10. #include "test_algorithm_impl.hpp"
  11. void test_algorithm2()
  12. {
  13. test_algorithm<
  14. base_types::collection,jammed_auto_increment,base_types::to_int,
  15. base_types::t1,base_types::t2,base_types::t3,
  16. base_types::t4,base_types::t5>();
  17. }