• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright Louis Dionne 2013-2017
2 // Distributed under the Boost Software License, Version 1.0.
3 // (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
4 
5 #include <boost/mpl/push_back.hpp>
6 #include <boost/mpl/quote.hpp>
7 #include <boost/mpl/transform.hpp>
8 #include <boost/mpl/vector.hpp>
9 
10 
11 template <typename X>
12 struct f { using type = X; };
13 
14 template <int i>
15 struct t { };
16 
17 using vector = <%= mpl_vector((1..input_size).to_a.map { |n| "t<#{n}>" }) %>;
18 
19 using result = boost::mpl::transform<vector, boost::mpl::quote1<f>>::type;
20 
21 
main()22 int main() { }
23