boost.pp : generate a const size_t array initializer
Hello, I have const size_t MaxNumber = 16; Can I generate this: const size_t elts[MaxNumber] = {0, 1, ..., 15}; with Boost.PP? I suppose I need to #define MaxNumber for PP? Regards,
2009/8/12 Hicham Mouline
Hello,
I have const size_t MaxNumber = 16;
Can I generate this: const size_t elts[MaxNumber] = {0, 1, ..., 15};
with Boost.PP?
I suppose I need to #define MaxNumber for PP?
#include <iostream>
#include <iterator>
#include
From: boost-users-bounces@lists.boost.org
[mailto:boost-users-bounces@lists.boost.org] On Behalf Of Roman Perepelitsa
Sent: 12 August 2009 12:26
To: boost-users@lists.boost.org
Subject: Re: [Boost-users] boost.pp : generate a const size_t array
initializer
2009/8/12 Hicham Mouline
2009/8/21 Hicham Mouline
Thanks very much. How about generating const int elts[] = { other_array[0], .... other_array[N-1] };
Basically I wished to initialize at compile time 1 const array based on another, I don't see any metaprogramming that allows this.
#include <iostream>
#include <iterator>
#include
participants (2)
-
Hicham Mouline
-
Roman Perepelitsa