* Dmitry Yu. Bolkhovityanov wrote on Sun, Nov 06, 2005 at 07:21:56AM CET: > > That's probably an old problem, but I haven't found any notion of > it in GCC docs. So...
It's one better discussed on the gcc-help mailing list.
> #define V(value) = value
> This works fine, until I try to pass it some complex value:
>
> D int some_array[2] V({4,5})
If you can limit yourself to C99-aware preprocessors, use
#define V(...) = __VA_ARGS__
Cheers,
Ralf
