What does the following mean?
It is in file crtdbg.h Something to do with C runtime debugging...Code:#define _RPT1(rptno, msg, arg1)
Cheers!
Printable View
What does the following mean?
It is in file crtdbg.h Something to do with C runtime debugging...Code:#define _RPT1(rptno, msg, arg1)
Cheers!
It defines a function-style macro that takes 3 parameters and expands to nothing. Most likely it's the release version of a debugging macro; judging by the name, the macro reports a message with a single embedded argument and the given report number or something like that. Locating the debug version of the macro would help.
In any case, the fact that the name starts with an underscore is a message to you that you are not to touch it, as it's for the library's internal use.