test_algorithm3.cpp 605 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_algorithm3.hpp"
  9. #include "function_types.hpp"
  10. #include "test_algorithm_impl.hpp"
  11. void test_algorithm3()
  12. {
  13. test_algorithm<
  14. function_types::collection,jammed_auto_increment,function_types::to_int,
  15. function_types::t1,function_types::t2,function_types::t3,
  16. function_types::t4,function_types::t5>();
  17. }