In the C/C++ there are 2 types of macro:
#define ABC /* usual */
und
#define FUNC(a) /*function-like*/
But how can I undefine them?
Update: So there is no difference between undefing "constant-like macro" and "function-like macro" ?
|
In the C/C++ there are 2 types of macro:
und
But how can I undefine them? Update: So there is no difference between undefing "constant-like macro" and "function-like macro" ? |
||||
| show 2 more comments |
Also note that it doesn't matter if one macro identifier uses the "usual" syntax while another uses a "function-like" syntax. |
|||||
|
|
|||||||||||
|
#defineofabc, the first one will be gone. – Job Aug 17 '10 at 15:58#define ABCis invalid (unless the new definition is identical to the old one, which it isn't here). Some dodgy preprocessors might allow it; others will give warnings or errors. – Mike Seymour Aug 17 '10 at 16:16