Is there a reason for which the DBG_PRINTF macro has been defined without the parenthesis for the outputDebugPrintf call (see below)
#define DBG_PRINTF(dbgprintf) Logger::outputDebugPrintf dbgprintf;
while the normal DBG macro has them?
#define DBG(dbgtext) Logger::outputDebugString (dbgtext);
It’s no big deal, but this does force one to add a couple of extra parenthesis around the argument of DBG_PRINTF to make it work… am I missing something?
