It's possible to use TRACE macro as printf like function (variable argument list) . If it supports this facility, then why it's necessary to have TRACE0, TRACE1 and TRACE2 macros except they're imposing restrictions on number of arguments. Again, I'd like to know if there are any advantages on restricting number of arguments for TRACE macro.

link|improve this question

63% accept rate
feedback

2 Answers

up vote 0 down vote accepted

If I recall correctly, MFC 4 did not have variadic TRACE statements. That was added in a later version. The old-style TRACEn macros are probably there for backward compatability.

link|improve this answer
feedback

It isn't necessary to have the other trace variants (trace1, trace2 etc), but it does mean that you don't have the worry of checking that you've got the correct number of arguments to go along with your format statement (for the trace macro).

Having a look at the macro definition for these macros: it's quite a good read!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.