The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
53 views

Variadic macro with no arguments for its variadic parameter

Is it legal to invoke a variadic macro M with no arguments for its variadic parameter? The relevant standard quote is [cpp.replace]/4: If the identifier-list in the macro definition does not end ...
23
votes
1answer
331 views

Can macros be overloaded by number of arguments?

How does this work? How can a C99/C++11 variadic macro be implemented to expand to different things on the sole basis of how many arguments are given to it?
2
votes
2answers
69 views

How to enhance this variable-dumping debug macro to be variadic?

First working code: #include <iostream> // NOTE: requires compiler which has __PRETTY_FUNCTION__, like gcc or clang #define DUMP(v) std::cerr << __PRETTY_FUNCTION__ << ':' << ...
3
votes
3answers
143 views

Variadac Macro apply macro to all arguments

I was experimenting with C++11 variadac macros. I was trying to apply another macro to each argument in the list. This is my first try: #define APPLY_CHAIN(first, ...) APPLY_ACT(first) ...
0
votes
0answers
68 views

Generate macro name according to the number of its arguments

I try to write the following macro: // helpers template<class T> void METADATA_METHODS_IMPL(std::string& metadata, const T &value, const std::string &key) { metadata += ...
1
vote
1answer
138 views

Preprocessor variadic FOR_EACH macro compatible with MSVC++10

I've seen a few questions asking for a variation on a variadic FOR_EACH macro. However unfortunately the answers provided are incompatible with VC++10 due to it expanding __VA_ARGS __ as one argument ...
0
votes
1answer
72 views

reverse the arguments to a variadic macro

How do I reverse the arguments to a variadic macro? For example, I'd like #define REVERSE(...) ??? REVERSE(A,B,C) // expands to C,B,A My goal is to separate the front and back arguments: #define ...
4
votes
1answer
189 views

Macro count params

In order to make compiler happy I have to count params passed to A(), otherwise gcc raises "warning: ISO C99 requires rest arguments to be used" when pedantic flag is on and only one param is passed ...
0
votes
1answer
77 views

Ignore empty variadic params

This code works as expected when all params are passed to HTML_A: #include <stdio.h> #define HTML_A_fmt_void #define HTML_A_arg_void #define HTML_A_fmt_link(fmt, ...) " href=\""fmt"\"" #define ...
3
votes
3answers
107 views

How to do variadic macros with $(call …) in GNU Make

I created a macro for use in makefiles along the lines of: TODO_MSG = $(warning TODO: $(1)) $(call TODO_MSG, This part of the msg displays fine, but this part does not) I can get around it with ...
0
votes
1answer
230 views

Casting all parameters passed in MACRO using __VA_ARGS__

I have a macro FOO(...) that receives an unknown number of parameters. I want to cast all those params to uint. Is there a way to achieve it?
2
votes
2answers
266 views

How to pass arguments to a variadic macro?

I have a variadic function: LogWrite(FILE * fp, int level, const char * filename, const char * function, ...) It should be called like this: LogWrite(fp, int Level, __FILE__, __FUNCTION__, ...
1
vote
1answer
158 views

Macroized Parmeters

I have a system with many parameter sets "macroized" (macros of the form "#define name value,value,value) I would like to pass these to a macro, but when I do I get an error. example: void fn(int ...
1
vote
1answer
197 views

2 different syntax for variadic macros

#define TEST(X, ...) X ## __VA_ARGS__ // (1) #define TEST(X, args...) X ## args // (2) Is there any functional difference between them ? (i.e. one of them can be used in a ...
6
votes
1answer
275 views

Is it possible to prevent the removal of the comma with empty __VA_ARGS__ in Visual C++?

On Visual Studio 2005 I have a macro that looks like this (examplified!!): #define MY_CALL(FUN, ...) \ if(prepare(x, y)) { \ FUN(__VA_ARGS__); \ } /**/ As long as the function takes ...
21
votes
6answers
7k views

Standard alternative to GCC's ##__VA_ARGS__ trick?

There is a well-known problem with empty args for variadic macros in C99. example: #define FOO(...) printf(__VA_ARGS__) #define BAR(fmt, ...) printf(fmt, __VA_ARGS__) FOO("this works fine"); ...
7
votes
2answers
1k views

GCC: Appending to __VA_ARGS__

I know I can do this: #define MACRO(api, ...) \ bool ret = api(123, ##__VA_ARGS__); This is just an example, it's part of a more complicated solution. The point is that I need to append the ...