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 9 #include "test_algorithm1.hpp" 10 11 #include "any_types.hpp" 12 #include "test_algorithm_impl.hpp" 13 test_algorithm1()14void test_algorithm1() 15 { 16 test_algorithm< 17 any_types::collection,jammed_auto_increment,any_types::to_int, 18 any_types::t1,any_types::t2,any_types::t3, 19 any_types::t4,any_types::t5>(); 20 } 21