I'm replacing one C-style macro with another.
#define OldMacro(...) {...}
#define NewMacro(...) {...}
I'd like to rewrite the old version of the macro so that it fails to compile with a specific error message, i.e. something like: "OldMacro() is deprecated; use NewMacro() instead." Is this possible?
Also, I'd like this to work in C, C++ and Objective-C.
#define OldMacro(...) char OldMacroIsDeprecatedUseNewMacroInstead[0]– Mooing Duck Nov 13 '12 at 20:12@to force a syntax error if you use the macro. – Keith Thompson Nov 13 '12 at 20:55