Question

I have an assert macros which looks like:

#define ASSERT(condition, ...) \
  (condition) ? (void)0 : MyLogFunction(__LINE__, __VA_ARGS__)

MyLogFunction is a variadic template too:

template<typename... Args>
void MyLogFunction(int line, const Args&... args) {/*code*/}

Everything works well except the case when I don't want to insert additional information into assert call.

So this works nice:

ASSERT(false, "test: %s", "formatted");

But this isn't:

ASSERT(false);

I believe there is a way to handle situation when no variadic args has has been passed into macro call and there is a way to insert something like simple string "" instead of __VA_ARGS__

Was it helpful?

Solution

Not really a solution for the macros, but a simple workaround would be to provide a helper variadic function template, which can get 0 parameters and do the condition checking there:

#define ASSERT(...) \
  MyLogHelper(__LINE__, __VA_ARGS__)

template<typename... Args>
void MyLogFunction(int line, const Args&... ) {/*code*/}

template<typename... Args>
void MyLogHelper(int line, bool condition, const Args&... args)
{
    if (!condition) MyLogFunction(line,args...);
}

OTHER TIPS

There is no portable way to do it. Have a look at http://en.wikipedia.org/wiki/Variadic_macro

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top