summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/hana/benchmark/make/compile.hana.basic_tuple.erb.cpp
blob: a04016a4c8aa41c8da09419217e1911412e34f0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright Louis Dionne 2013-2017
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)

#include <boost/hana/basic_tuple.hpp>


template <int i>
struct x { };

int main() {
    constexpr auto tuple = boost::hana::make_basic_tuple(
        <%= (1..input_size).map { |n| "x<#{n}>{}" }.join(', ') %>
    );
    (void)tuple;
}