Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to single out the first parameter sent to a macro taking only a variadic parameter

I try to get at the first actual parameter sent to a variadic macro. This is what I tried, and which does not work in VS2010:

#define FIRST_ARG(N, ...) N
#define MY_MACRO(...) decltype(FIRST_ARG(__VA_ARGS__))

When I look at the preprocessor output I see that FIRST_ARG returns the entire argument list sent to MY_MACRO...

On the other hand when I try with:

FIRST_ARG(1,2,3)

it expands to 1 as intended.

This seems to be somehow the inverse of the problem solved by the infamous two level concat macros. I know that "macro parameters are fully expanded before inserted in the macro body" but this does not seem to help me here as I don't understand what this means in the context of ... and __VA_ARGS__

Obviously __VA_ARGS__ binds to N and is only evaluated later. I tried several ways with extra macro levels but it didn't help.

like image 440
Bengt Gustafsson Avatar asked Jan 20 '11 17:01

Bengt Gustafsson


1 Answers

This is a bug in the Visual C++ preprocessor. The workaround listed there works. This:

#define FIRST_ARG_(N, ...) N
#define FIRST_ARG(args) FIRST_ARG_ args
#define MY_MACRO(...) decltype(FIRST_ARG((__VA_ARGS__)))

MY_MACRO(x, y, z)

expands to:

decltype(x)
like image 128
James McNellis Avatar answered Nov 08 '22 14:11

James McNellis