2
0
mirror of https://github.com/boostorg/hana.git synced 2026-02-23 03:42:09 +00:00
Files
hana/benchmark/list/create.cpp
2014-07-09 17:55:56 -04:00

12 lines
205 B
C++

<% render(instance) %>
<%= includes(0..x) %>
template <int i> struct x { };
int main() {
auto go = <%= list(
(0..x).map { |i| "x<#{i}>" },
(0..x).map { |i| "x<#{i}>{}" }
) %>;
}